function openwindow(name,url,left,top,width,height,toolbar,menubar,statusbar,scrollbar,resizable)
{
	toolbar_str=toolbar?'yes':'no';
	menubar_str=menubar?'yes':'no';
	statusbar_str=statusbar?'yes':'no';
	scrollbar_str=scrollbar?'yes':'no';
	resizable_str='yes';
	newwin= open(url,name,'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',statusbar='+statusbar_str+',scrollbar='+scrollbar_str+',resizable='+resizable_str);
	newwin.document.writeln('<body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">');
	newwin.document.writeln('<a href="" onclick="window.close();">');
	newwin.document.writeln('<img alt="Donglai" border=0 src='+url+'>');
	newwin.document.writeln('</img>');
	newwin.document.writeln('</a>');
	newwin.document.writeln('</body>');
}
function openwindows(name,url)
{
	
	window.open(url,name,'left=150,top=90,width=500,height=450,toolbar=no,scrollbars=yes,resizable=yes,location=1,toolbar=1');
}
