function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function photo(path, w, h){

hWnd = window.open("about:blank", "", "menubar=0,resizable=0,status=0,tollbar=0,scrollbars=0,width="+w+",height="+h+"");

hWnd.document.open();
hWnd.document.writeln( "<html>" );
hWnd.document.writeln( "<head><title>Лестничные ограждения</title></head>" );
hWnd.document.writeln( "<body bgcolor=#FFFFFF leftmargin=0 topmargin=0 rightmargin=0 bottommargin=0>" );
hWnd.document.writeln( "<img src='img/"+path+".jpg' alt='' width='"+w+"' height='"+h+"' border='0'>" );
hWnd.document.writeln( "</body>" );
hWnd.document.writeln( "</html>" );
hWnd.document.close();

       }
