function popupWin(url,width,height) {
var defPopupImage=window.open("","PopupImage","directories=0,menubar=0,personalbar=0,status=0,resizable=1,top=50,left=200,width="+ width + ",height=" + height);
defPopupImage.focus();
defPopupImage.close();
defPopupImage=window.open("","PopupImage","directories=0,menubar=0,personalbar=0,status=0,resizable=1,top=50,left=200,width="+ width + ",height=" + height);
defPopupImage.focus();
defPopupImage.document.open();
defPopupImage.document.write("<HTML><HEAD><TITLE>Auto-Close</TITLE></HEAD><BODY>");
defPopupImage.document.write("<div align=center><font size=3><b>This window will close in 10 seconds</b></font><br></div>");
defPopupImage.document.write("<div align=center><IMG SRC='");
defPopupImage.document.write(url);
defPopupImage.document.write("'></div>");
defPopupImage.document.write("</BODY></HTML>");
defPopupImage.document.close();
defPopupImage.focus();
clearIDdefPopupImage=defPopupImage.setTimeout("self.close()",10000);
}


function popuphtm(url) {
var defwin=window.open("","MapopUp","status=no,scrollbars=no,resizable=no,top=0,left=0,width=1,height=1");
defwin.focus();
defwin.close();
defwin=window.open(url,"MapopUp","status=no,scrollbars=yes,resizable=yes,top=0,left=0,width=780,height=570");
defwin.focus();
clearIDpopuphtm=defwin.setTimeout("defwin.focus()",100000);
}


function popuphtm2(url,width,height) {
var defwin=window.open("","MapopUp","status=no,scrollbars=no,resizable=no,top=0,left=0,width="+ width + ",height=" + height);
defwin.focus();
defwin.close();
defwin=window.open(url,"MapopUp","status=yes,scrollbars=yes,resizable=yes,top=0,left=0,width="+ width + ",height=" + height);
defwin.focus();
clearIDpopuphtm2=defwin.setTimeout("defwin.focus()",100000);
}
