function openwin(imgfile,m,n)
    {
arglist='toolbar=no,location=no,directories=no,status=no,menubar=0,scrollbars=auto,';
arglist+='titlebar=no,resizable=yes,width='+m+',channelmode=0,height='+n;
arglist+=',alwaysRaised=1,dependent=1';

    OpenWindow=window.open("", "newwin", arglist);
    OpenWindow.document.write("<html><body style='margin-top:0em;' bgcolor='white'>")
    OpenWindow.document.write("<img src='"+imgfile+"'><P>")
    OpenWindow.document.write("<P align='center'>")
    OpenWindow.document.write("<a href='javascript:window.close(this);' style='text-decoration:none;'><b>Close</b></a><br>")
          OpenWindow.document.write("</P>")
          OpenWindow.document.write("</body>")

          OpenWindow.document.write("</html>")
          OpenWindow.document.close()
          OpenWindow.focus();
          }

