// JavaScript Document


//Function to replace normal link so Google doesn’t follow the link
//(Use for non-important links, doesn't take away the importance of the other links)

function nofollow_NewWindow(n)
{

	n = n.replace(/\^/, '@'); 
	n = n.replace(/\~/, 'mailto:');
	n = n.replace(/\`/, '.');
	n = n.replace(/\!/, 'http://');
	n = n.replace(/\++/, '.asp');
	window.open (n, 'NAMEOFWINDOW')
}

function nofollow(n)
{

	n = n.replace(/\^/, '@'); 
	n = n.replace(/\~/, 'mailto:');
	n = n.replace(/\`/, '.');
	n = n.replace(/\!/, 'http://');
	n = n.replace(/\++/, '.asp');
	document.location.href=n; 
}

