// JavaScript Document
function makeGreynoiseLink(){
	
	var greynoise = document.getElementById('GreynoiseFooterLink');
		if(greynoise){
			greynoise.onclick = function(){
				
				window.open(this.href, '_blank');
				
				return false;
			}
	}
	

}

window.onload = function() {
	if(!document.getElementById){
		return false;
	}
	makeGreynoiseLink();
	
}