function opentext(title, text, w, h)
{
	if (!w){w=200};
	if (!h){h=300};
	win1 = open("", "_blank", "toolbar=0,status=0,location=0,menubar=0,directories=0,scrollbars=1,resizeable=1,width="+w+",height="+h);
	win1.document.open();
	win1.document.write("<html><head><title>"+title+"</title><meta http-equiv='Content-Type' content='text/html; charset=windows-1251'></head>");
	win1.document.write("<body topmargin='15' leftmargin='15' marginheight='15' marginwidth='15' bgcolor='#080300' style='font-family:tahoma; font-size:12px; color:#F1CDB5;'>");	
	win1.document.write("<b>"+title+"</b>:<br><br>"+text);
	win1.document.write("</body></html>");
}