function open_window(imgWidth,imgHeight,url,name) {

imgWidth += 25;

imgHeight += 55;

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>Underground Fitness Center</title><link rel=\"stylesheet\" href=\"pop.css\" type=\"text/css\"></head><body><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;

}