// JavaScript Confirm Box for External Links

function ConfirmBox(url)
{
	var msg1 = "You are now leaving the Western Division website.";
	var msg2 = "Western Division is not responsible for the privacy";
	var msg3 = "practices or the content of any Third-Party Sites.";
	var msg4 = "You are advised to review the privacy statement"
	var msg5 = "applicable to each Third-Party Site you visit.";
	var msg6 = "Note: If a new window does not open, please"
	var msg7 = "adjust your browser's Pop-up Blocker Settings.";
	var msg8 = "Proceed?";
	
	if (confirm(msg1 + "\n\n" + msg2 + "\n" + msg3 + "\n\n" + msg4 + "\n" + msg5 + "\n\n" + msg6 + "\n" + msg7 + "\n\n" + msg8) ==true)  {window.open(url);}
	
	else {}
}


function confirmSubmit()
{
	var msg1 = "You are now leaving the Western Division website.";
	var msg2 = "Western Division is not responsible for the privacy";
	var msg3 = "practices or the content of any Third-Party Sites.";
	var msg4 = "You are advised to review the privacy statement"
	var msg5 = "applicable to each Third-Party Site you visit.";
	var msg6 = "Note: If a new window does not open, please"
	var msg7 = "adjust your browser's Pop-up Blocker Settings.";
	var msg8 = "Proceed?";
var agree=confirm(msg1 + "\n\n" + msg2 + "\n" + msg3 + "\n\n" + msg4 + "\n" + msg5 + "\n\n" + msg6 + "\n" + msg7 + "\n\n" + msg8);
if (agree)
	return true ;
else
	return false ;
}
