function Zoom( Width, Height, Src, Title )
{			
  nwndw=window.open('',"zoom",'width=' + Width + ',height=' + Height + ',top=50,left=50,resizable=0,scrollbars=0,menubar=0,fullscreen=no');
  nwndw.document.open();
  nwndw.document.clear();
  nwndw.document.write("<html><head><title>" + Title + "</title>\n");
  nwndw.document.write("</head>\n" + "<body bottommargin=0 leftmargin=0 marginheight=0 marginwidth=0 rightmargin=0 topmargin=0 bgcolor=#FFFFFF>\n");
  nwndw.document.write("<table cellspacing=0 cellpadding=0 align=center border=0><tr><td>");
  nwndw.document.write("<a href='javascript:this.close();'><img src=" + Src + " width=" + Width + " height=" + Height + " border=0></a>");
  nwndw.document.write("</td></tr></table>" + "</body>\n" + "</html>");
  nwndw.document.close();
  nwndw.focus();
}
