function linkout(url) { 
	if (confirm("This link will take you to a Web site to which this Privacy Policy does not apply. We encourage you to read the Privacy Policy of every Web site you visit. Press OK to continue.") ) 
	{ 
		window.open(url);
	} 
	else{
		return false;
	}
} 
