<!-- //
// popup window

function popUp(url,nHeight,nWidth, sResize, sMenu, sWindowName) {

	if (sWindowName == "") {
		sWindowName = "popup";
	}

	if (nHeight == "kaon") {
		nHeight=460;
		nWidth=440;
		sResize="no";
		sMenu="no";

	} else if (nHeight == "coupon") {
		nHeight=400;
		nWidth=553;
		sResize="yes";
		sMenu="yes";

	} else {
		if (nHeight == "") {
			nHeight=400;	
		}
		if (nWidth == "") {
			nWidth=553;	
		}
		if (sResize == "" || sResize == "no") {
			sResize = "no";	
		}
		if (sMenu == "" || sMenu == "no") {
			sMenu = "no";	
		}
	}	

        if(top.browser=="explorer") {
	        top.PoppedWin=window.open(url,sWindowName,'toolbar='+sMenu+',location='+sMenu+',directories=no,status='+sMenu+',menubar='+sMenu+',scrollbars='+sResize+',resizable='+sResize+',copyhistory=no,width='+nWidth+',height='+nHeight);
        } else {
	        top.PoppedWin=window.open(url,sWindowName,'toolbar='+sMenu+',location='+sMenu+',directories=no,status='+sMenu+',menubar='+sMenu+',scrollbars='+sResize+',resizable='+sResize+',copyhistory=no,width='+nWidth+',height='+nHeight);top.PoppedWin.focus();
        }
}



//-->
