	function WinOpen(page){
		if ((navigator.appName=="Netscape")&& (parseInt(navigator.appVersion)<=4)) {
        		winwidth = screen.availWidth;
        		winheight = screen.availHeight
        		msg=window.open(page,"","top=0,left=0,width="+winwidth+",height="+winheight+",scrollbars=yes,resizable=yes");
		}else{
        		msg=window.open(page,"","fullscreen=yes");
		}
	}

	function popupImage(img){
		mstr = "<HTML><HEAD><LINK REL='stylesheet' TYPE='text/css' HREF='/common.css?'></HEAD><BODY><CENTER><TABLE>";
		mstr+= "<TR><TD ALIGN=CENTER><A CLASS=redlnk HREF='javascript:window.close()'>Close</A></TD></TR>";
		mstr+= "<TR><TD ALIGN=CENTER><IMG SRC='/images/blank.gif' WIDTH=1 HEIGHT=10 BORDER=0></TD></TR>";
		mstr+= "<TR><TD ALIGN=CENTER><IMG SRC='"+img+"' BORDER=0></TD></TR>";
		mstr+= "</TABLE></CENTER></BODY></HTML>";
                if ((navigator.appName=="Netscape")&& (parseInt(navigator.appVersion)<=4)) {
                        winwidth = screen.availWidth;
                        winheight = screen.availHeight
                        msg=window.open("","","top=0,left=0,width="+winwidth+",height="+winheight+",scrollbars=yes,resizable=yes");
                }else{
                        msg=window.open("","","fullscreen=yes");
                }
		msg.document.write(mstr);

	}

