

function view_large_pictures(folder,pictures)
{
	var bg_color="#FFFFFF";				// ЦВЕТ ОКНА
	var pictures_folder="../images/" + folder + "/";	// ПУТЬ К КАРТИНКАМ
	var w_screen=800;				// ШИРИНА ОКНА
	var h_screen=534;				// ВЫСОТА ОКНА
	
	large_pictures = new Image(); large_pictures.src=pictures_folder+pictures+"_big.jpg";
	
	generation_window=open("","displayWindow","width="+w_screen+",height="+h_screen+",status=yes,toolbar=no,menubar=no");
	generation_window.document.open();
	generation_window.document.write("<html><head><title>Просмотр увеличенного изображения!</title></head>");
	generation_window.document.write("<body bgcolor='"+bg_color+"'>");
	generation_window.document.write("<div id='' style='position:absolute; left:0px; top:0px; width:100%; height:100%; z-index:1'>");
	generation_window.document.write("<table width='100%' height='100%'  border='0' cellpadding='0' cellspacing='0'>");
	generation_window.document.write("<tr>");
	generation_window.document.write("<td valign='middle'><div align='center'><img scr='' name='masha' id='masha'></div></td>");
	generation_window.document.write("</tr>");
	generation_window.document.write("</table>");
	generation_window.document.write("</div>");
	generation_window.document.write("</body>");
	generation_window.document.write("</html>");
	generation_window.document.masha.src=eval("large_pictures.src");
	generation_window.document.focus();
	generation_window.document.close();  
}


