function nwin(mal,x,y) {
  myWin= open("", "", "resizable=yes, scrollbars=no, height="+x+", width="+y+"\"");
myWin.document.open();

  myWin.document.write("<BODY bgcolor=\"#003a70\">");
myWin.document.write("<center>");
  myWin.document.write("<img src=\""+mal+"\">");
  myWin.document.write("</CENTER></BODY></HTML>");
  myWin.document.close();  
}
