function openwin(img,w,h,title)
{
 var hWnd;
 if(hWnd!=null) hWnd.close();
 hWnd=window.open(img,"","toolbar=no,location=no,directories=no,resizable=yes,scrollbars=yes,left=100,top=100,width="+w+",height="+h);
 hWnd.document.open();
 hWnd.document.write("<html><head><title>"+title+"</title><link href='data/css.css' type=text/css rel=stylesheet></head><body topmargin=0 leftmargin=0 marginwidth=0 marginheight=0>");
 hWnd.document.write("<table height=100% width=100% background='img/bg.gif'><tr><td align=center><img src=\""+img+"\" border=0></td></tr></table>");
 hWnd.document.write("</body></html>");
 hWnd.document.close();
}

