// disclaimer alert
function redir(url){
	if (confirm("This link will transmit information to a Web site to which our site's Privacy Policy does not apply.\nYou are solely responsible for your interactions with that Web site.")){
		pageTracker._trackPageview("/exit/" + url);
		window.open(url);
	}
}

//smaller window
function redirsm(url){
	if (confirm("This link will transmit information to a Web site to which our site's Privacy Policy does not apply.\nYou are solely responsible for your interactions with that Web site.")){
	window.open(url,'popup','scrollbars=yes,resizable=yes,width=600,height=500,menubar=yes,toolbar=yes,status=yes,location=yes');
	}
}
