//Dialog
function NewDialog(id,URLString,dialogWidth,dialogHeight) {
	if (window.navigator.userAgent.indexOf("MSIE")>=1){
		if (id > 0){
			return showModelessDialog(URLString, window, "dialogWidth:" + dialogWidth + "px; dialogHeight:" + dialogHeight + "px; help:no; resizable:yes; scroll:no; status:yes");
		}else{
			return showModalDialog(URLString, window, "dialogWidth:" + dialogWidth + "px; dialogHeight:" + dialogHeight + "px; help:no; resizable:yes; scroll:no; status:yes");
		}
	}else{
		window.open(URLString,window,"toolbar=no,resizable=yes,scrollbars=no");
	}
}

function FP_preloadImgs() {//v1.0
 var d=document,a=arguments; if(!d.FP_imgs) d.FP_imgs=new Array();
 for(var i=0; i<a.length; i++) { d.FP_imgs[i]=new Image; d.FP_imgs[i].src=a[i]; }
}