// Business, Open window
<!-- 
pageName = ""
iWidth = 661
iHeight = 500
function openWin(URL) {
	pageName = URL
		//window.alert("Extract URL address: " + pageName);
	if(screen.width == 1024) {
		windowWidth = 512;
		windowHeight = 384;
		}
	else {
		windowWidth = 400;
		windowHeight = 300;
		}
	ileft = windowWidth - (iWidth / 2);
	itop = windowHeight - (iHeight / 2);
	var aWindow = "";
	var strMenustring = "menubar=no,toolbar=no,status=no,width=" + iWidth + ",height=" + iHeight + ",left=" +  ileft + ",top=" + itop + ",resize=no,scrollbars";
	aWindow = window.open(pageName,"Category",strMenustring);
	aWindow.focus();
	}
//-->
