// handles opening popups
function openPop(winURL,winWidth,winHeight) {
	var theWidth = 500;
	var theHeight = 400;
	if(winWidth != null) {
		theWidth = winWidth;
	}
	if(winHeight != null) {
		theHeight = winHeight;
	}
	var winOptions = 'menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,width='+theWidth+',height='+theHeight;
	windowpop_handle = window.open(winURL, 'windowpop', winOptions);
	windowpop_handle.focus();
}
// handles browse products dropdown
function gotoURL() {
	box = document.getElementById("productList");
	destination = box.options[box.selectedIndex].value;
	if (destination) {
		location.href = destination;
	}
}
// loads scripts via javascript
function loadScript(url) {
	var e = document.createElement("script");
	e.src = url;
	e.type="text/javascript";
	document.getElementsByTagName("head")[0].appendChild(e);
}
// handles surfaid tagging
window.onload = function() {
	SA_ID="equifax;equifax";
	//loadScript("//stats.surfaid.ihost.com/sacdcflash2.js");
	loadScript("//stats.surfaid.ihost.com/sacdcg3p_equifax_equifax.js?equifax");
}