window.addEvent('domready', function(){
	
	
	// Scan links for external sites
	$$('a[target=_blank]').each(function(a){
		if (a.getProperty('rel') == null || !a.getProperty('rel').contains('external')){
			a.addEvent('click', function(e){
				var event = new Event(e);
				if (!event.shift && !event.control){
					event.stop();
					window.location.href = 'redirectc461.html?url=' + encodeURIComponent(a.getProperty('href')) + '&referrer=' + encodeURIComponent(document.location.href);
				}
			});
		}
	});

	
});