function picwindow(theURL,winName,features,parameter,title) {
	order = window.open(theURL,winName,features);
	order.document.writeln('<html>');
	order.document.writeln('<head>');
	order.document.writeln('<meta http-equiv="Content-Language" content="ru">');
	order.document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">');
	order.document.writeln('<title>' + title + '</title>');
	order.document.writeln('</head>');
	order.document.writeln('<body topmargin="0" leftmargin="0" marginheight=0 marginwidth=0>');
	order.document.writeln('<img src="' + parameter + '" alt="'+ title +'">');
	order.document.writeln('</body>');
	order.document.writeln('</html>');
	order.focus();		 
}
