// 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.")){
		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');
	}
}

// regular pop up window
var newwindow;
function popUpWindow(url)
{
	newwindow=window.open(url,'name','height=625,width=600');
	if (window.focus) {newwindow.focus();}
}