<!--
function winBRopen(theURL, Name, popW, popH) {
	var winHorz = (screen.width-popW)/2;
	var winVert = (screen.height-popH)/2;
	winProp = 'width='+popW+',height='+popH+',left='+winHorz+',top='+winVert+',scrollbars=yes,resizable=yes';
	var Win = window.open(theURL, Name, winProp);
	if (parseInt(navigator.appVersion) >= 4) { Win.window.focus(); }
}

function closeupwindow(){
	window.close();
}

function popupWindow(filename){
	if(filename.length > 0 && strPopUpDirURL.length > 0) {
		puwURL = strPopUpDirURL + filename;
		winBRopen(puwURL,'popupWin1',640,480);
	}
}

function popupWindowNV(){
	if(strPopUpFileURL.length > 0) winBRopen(strPopUpFileURL,'popupWin2',640,480);
}

function closeAndMove(){
	if(strBuyNowURL.length > 0) window.open(strBuyNowURL);
}
//-->