// JavaScript DocumentnewWindow = new Object;newWindow.closed = true;function PopUp(pic, path, winWidth, winHeight){if(!newWindow.closed){	newWindow.close();}	newWindow = window.open('','','width='+winWidth+',height='+winHeight+',scrollbars=no,resizable=no');	newWindow.document.write("<html>\n<head>\n<title>TfT</title>\n");	newWindow.document.write("<style type=\"text/css\"><!-- body{margin:0px; padding:0px;background:#333333} div{width: 100%; text-align: center;} --></style>\n");//--CSS	newWindow.document.write("</head>\n<body>\n");	newWindow.document.write("<div><img src=\""+path+pic+"\"></div>");	//newWindow.document.write("<a href=\"#\" onClick=\"javascript: top.window.close();\">close</a>\n");	newWindow.document.write("</body>\n</html>");	newWindow.focus();}