	function Popup(src)  
	{  
		var html = '<html><head>'+  
					 '<script type="text/javascript">function fitPic(){'+  
					 'var iHeight=(document.all)?49:51;var iWidth=(document.all)?11:8;'+  
					 'window.resizeTo(document.images[0].width+iWidth,document.images[0].height+iHeight);self.focus();}</script>'+  
					 '</head><body onclick="javascript:window.close();" style="margin:0;overflow:auto">'+  
					 '<img onload="fitPic()" src="'+src+'" border="0" /></body></html>';  
		win = window.open('','PopImg','width=200,height=200,location=no,resizable=no,scrollbars=no');  
		win.document.open();  
		win.document.write(html);  
		win.document.close(); 
	};