// Snap-on Specific Javascripts

// Leaving Snap-on Pop-up message
var LINE = "You are about to leave the Snap-on Corporate Intranet site.\n";
LINE += "Our terms and conditions and privacy policies may not apply.";
function ConfirmGo_links(SITE,NewWindow)
{
	var GO = confirm(LINE);
	if (GO) {
		if (NewWindow == 1) {
			window.open(SITE); 
		} else {
			document.location.href = SITE; 
		}
	}
}