
function popupPreview(previewURL){
	popupWin = window.open(previewURL, 'popupWin', "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=720,height=800");
	popupWin.focus();
}

function popupPrintWin() {
	var popupPrintWin = window.open('/popup.cfm/reprint.#cfusion_encrypt(saveOrderNo,application.siteId)#', 'printWin', 'height=800,width=720,scrollbars=1,toolbar=no');
	popupPrintWin.focus();
}

function popImage(imageURL, title, wWidth, wHeight) {
	if (!(wWidth)) wWidth=400;
	if (!(wHeight)) wHeight=400;
	iWidth = wWidth+80;
	iHeight = wHeight+120;
	features= "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=" + iWidth+ ",height=" + iHeight;
	winHTMLpreview = window.open(imageURL, 'winHTMLpreview', features);
	winHTMLpreview.resizeTo(iWidth, iHeight);
	winHTMLpreview.focus();
}


