

function open_window(imgWidth,imgHeight,url,name) {
imgWidth += 25;
imgHeight += 75;
var temp = window.open("",name,"toolbar=0,directories=0,location=0,status=0,menubar=0,resizable=yes,scrollbars=0,width=" + imgWidth + ",height=" + imgHeight + ",left=20,top=20,screenX=20,screenY=20");
        temp.document.open("text/html","replace");
        temp.document.write("<html><head><title>Image</title><link rel=\"stylesheet\" href=\"pop.css\" type=\"text/css\"></head><body bgcolor=\"#FFFFFF\" link=\"#0000FF\"><center><img src=\"" + url + "\" border=\"0\"></center><br clear=\"all\"><br><div align=\"center\"><a href=\"javascript:this.close()\">Close Window</a></div></body></html>");
        temp.document.close();
return;
}
