var title,extvar image,extvar width,heightvar cond1,cond2function showDetail(title,image,width,height) {        if (width==0) cond1=" "                else cond1="left=75,width="+(width+20)+"";        if (height==0) cond2=" "                else cond2="top=75,height="+(height+70)+"";        var s1 	= "<html><head><title>"+title+"</title>"        var s2 	= "<style type='text/css'><!--"        var s3 	= "A:link { text-decoration: none;font-family:verdana; font-size:10px; font-weight: bold; font-color: #000000 }"		var s4 	= "--></style>"        var s5 	= " "        var s6 	= "</head><body  bgcolor='#6699CC' link='#000000' alink='#000000' vlink='#000000'><center>"         var s7 	= "<img src='"+image+"' width='"+width+"'' height='"+height+"' border='1'>"        var s8 	= "<p><A HREF='Javascript:self.close();' onFocus='blur()'>"        var s9 = "close window</a>"        var s10 = "</center></body></html>"        ImageWindow=window.open("", "newwin"+width,"toolbar=no,scrollbars=no,menubar=no,"+cond1+","+cond2);        ImageWindow.document.write(s1+s2+s3+s4+s5+s6+s7+s8+s9+s10)        ImageWindow.document.close()}