/*
Создание и продвижение сайтов: дизайн-студия informanto.ru

(с)2007 Все права защищены

informanto@mail.ru

*/

function OpenWin(file)
{
	var X	=	(screen.width/2) - (800/2);
	var Y	=	(screen.height/2) - (600/2);

	var img_win=window.open("./" + file + ".php","pic","dependent=yes,resizable=yes,scrollbars=yes,titlebar=yes,top="+Y+",left="+X+",height=600,width=800");
}

function ShowImage(path, img, text)
{
	var pic	=	img;
	var X	=	(screen.width/2) - (1024/2);
	var Y	=	(screen.height/2) - (768/2) - 50;

	var img_win=window.open("","pic","dependent=yes,resizable=yes,scrollbars=yes,titlebar=yes,top="+Y+",left="+X+",height=768,width=1024");
	img_win.document.writeln("<html><head><title>info</title></head>");
	img_win.document.writeln("<body bgcolor='#eab14e'><center><div onclick=\"javascript:window.close()\">");
	img_win.document.writeln("<h2>"+text+"</h2>");
	img_win.document.writeln("<img src=\""+path+pic+"\"><br><br>Чтобы <u>закрыть окно</u> кликните по изображению</center>");
	img_win.document.writeln("<br><center><h4>&copy; 2009 Opishne.com</h4>");
	img_win.document.writeln("</body></html>");
	img_win.document.close();
	img_win.focus();
}

