function wopen(wurl,wname,w,h)
{
w1=w;
h1=h+40;

wfeatures="height="+h1+",width="+w1+",scrollbars=yes,menubar=no,status=no,toolbar=no,location=no";
win = window.open("3.html",wname,wfeatures); 
win.document.write("<html><head><title>Photo</title>");
win.document.write("</head>");
win.document.write("<body topmargin=0 bottommargin=0 leftmargin=0 rightmargin=0>");

win.document.write("<table><tr><td background=\"image/"+wurl+".jpg\" width=\""+w+"\" height=\""+h+"\" valign=\"bottom\" style=\"background-repeat: no-repeat;\">");

win.document.write("</td></tr></table>");
win.document.write("<div align=\"center\" style=\"padding-bottom: 0px;\"><a href=\"javascript:window.close();void(0);\" style=\"font-family: Franklin Gothic Medium, Verdana, sans-serif; font-size:14px; font-weight: inherit; font-style: inherit; color: black;\">Close this window</a></div>");

win.document.write("</body></html>");

}