function win(url,w,h,title) {
	winwid=w;
	winhei=h;
	
   var newWindow = window.open("","111","height="+winhei+",width="+winwid+",left=180,top=150,menubar=no,location=no,resizable=yes,scrollbars=no");
   newWindow.document.write("<body style='padding:0px; margin:0px'>");
   newWindow.document.write("<title>"+title+"</title>");
   newWindow.document.write("<img src="+url+" width="+winwid+" height="+winhei+" onClick='window.close();' >");
   newWindow.document.write("</body>");
   newWindow.document.close();
   newWindow.document.focus();
	
}

