// JavaScript Document




function open_Win(bigf,title,type) {


if (type=='vert')
{
  myWin= open("", "displayWindow", 
    "width=530,height=700");
	} 
else	
{
  myWin= open("", "displayWindow", 
    "width=700,height=530");
	} 	

  // открыть объект document для последующей печати 
  myWin.document.open();
  
  // генерировать новый документ 
  myWin.document.write("<html><head><title>Просмотр фото</title></head>");
  myWin.document.write("<body bgcolor='#CCCCCC'>");
    myWin.document.write("<center><b>"+title+"</b><br><img src='"+bigf+"' border='1' style='border:#666666 2px solid;' onclick='window.close();' alt='"+title+"' /></center>");  
 
  myWin.document.write("</body></html>");
  
}
