function popupWin(filename,desc,width,height) {

	if ((parent.popup)&&(!parent.popup.closed)) {
		parent.popup.close();
	}
	
	htmltext =
		"<HTML><HEAD><TITLE>"+desc+"</TITLE></HEAD>" +
		"<BODY BGCOLOR='003399' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>" +
		"<IMG SRC='"+filename+"' BORDER=0>" +
		"</BODY></HTML>";
	
	//parent.popup = window.open("","popup","top=20,left=20,height="+(height+100)+",width="+(width+60));
	parent.popup = window.open("","popup","top=50,left=100,height="+height+",width="+width);
	
	parent.popup.document.write(htmltext);
	parent.popup.document.close();

}

function popupWinURL(filename, width, height) {
	
	// alert(filename);

	if ((parent.popup)&&(!parent.popup.closed)) {
		parent.popup.close();
	}
	
	parent.popup = window.open(filename,"popup","top=50,left=100,height="+height+",width="+width+",scrollbars,resizable");
	
}