function urlPopUp(URL)
	{
	var popURL = URL;
	var winWidth = (screen.width / 2) * 1.5;
	var winHeight = (screen.width / 2);
	var winAttrib = "status=no,scrollbars=yes,toolbar=no,menubar=no,location=no,titlebar=no,resizable=yes,top=10,left=10,";
	winAttrib = winAttrib + "height=" + winHeight + ",";
	winAttrib = winAttrib + "width=" + winWidth;
	window.open(URL,'Norgren',winAttrib);
	}
function cadpop(type) 
{
	var cadURL;
	switch (type)
	{
	case "Group":
	cadURL = "http://www.norgren.com/cad_select.asp";
	break;
	default:
	cadURL = "http://www.3dcad.norgren.com/globalselector/cadhome.asp?Lang=" + type;
	break;
	}
	window.open (cadURL,"cad","width=770,height=660,top=25,left=25,resizable=yes,scrollbars=yes,toolbar=yes");
}
//open profile form window depending on source
function profileForm(formURL, lang, formType)
{		
	var profileWindow;
	var sourceURL;
	sourceURL = "http://www.norgren.com/web_profile/web_profile.asp?source=" + formURL + "&lang=" + lang + "&type=" + formType;
	profileWindow = window.open(sourceURL,"profileWindow","width=500,height=500,left=25,top=25,scrollbars=yes");
	profileWindow.focus();
	return false;
}
function gotoCountrySite() {
	var URL = document.countrySelect.marketlist.options[document.countrySelect.marketlist.selectedIndex].value;
	window.location.href = URL;
}
function gotoCategory() {
	var URL = document.categorySelect.categoryList.options[document.categorySelect.categoryList.selectedIndex].value;
	window.location.href = URL;
}
