<!--
function popPictureSQW(imageName,imageWidth,imageHeight,alt,posLeft,posTop,desc) {
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#999999" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">'); 
	newWindow.document.write('<table width=100%><tr><td bgcolor=#CCCCCC><img src=images/sqw_small.gif> <img src=images_homepage/sqw_logo_chinese_inner.gif></td></tr><Tr><td><img src=images/transparent.gif width=10 height=8></td></tr>'); 
	newWindow.document.write('<tr><td align=center>'); 
	newWindow.document.write('<center><img src='+imageName+' alt='+alt+'></center>'); 
	newWindow.document.write('</td></tr>'); 
	newWindow.document.write('<tr><td align=center><font size=1 face=arial color=white>' + desc + '</font><br><input type=button value="Close this window" onclick="self.close()"></td></tr>'); 
	newWindow.document.write('</table>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
} 
//-->
