
function ShowImageWindow(picname, width, height, title)
{
	if(self && self.screen && self.screen.width)
	{
		pos="";
		if(width>self.screen.width)
		{
			winwidth=self.screen.width-20;
			pos+=",left=0";
		}
		else
		{
			winwidth=width;
			pos+=",left="+((self.screen.width-width+17)/2);
		}
		if(height>self.screen.height)
		{
			winheight=self.screen.height+60;
			pos+=",top=0";
		}
		else
		{
			winheight=height;
			pos+=",top="+((self.screen.height-height)/2);
		}
			
	}
	var params='toolbar=no,height='+winheight+',width='+winwidth+',location=no,scrollbars=no,status=no,menubar=no,resizable=yes'+pos;
	picwin=window.open("","_blank",params);
	picwin.document.open();
	picwin.document.write('<html><title>ÏÎÊÐÛØÊÈÍÎ&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</title>');
	picwin.document.write('<body style="margin:0; padding:0; background:#ffffff;"><table width=100% border="0" style="height:100%;"><tr><td align="center" valign="middle"><a href="#" onclick="window.close()"> ');
	picwin.document.write('<img src="'+picname+'"  border="0"/>');
	picwin.document.write('</a></td></tr></table></body></html>');
	picwin.document.close();
}




