function nwindow(location,name,w,h)
{
window.open (location+'/'+name,'wn','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=no,scrollbars=yes,width='+w+',height='+h+'');
}

function showphoto(path,width,height)
{
  size=width+','+height;
  newWin=open("","",size);
  size=width+' '+height;
  newWin.document.open();
    
  newWin.document.write("<html><head><title>Saint Petersburg's State musical-dramatic theatre &#147;Buff&#148;</title></head>");
  newWin.document.write('<body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">');
  newWin.document.write("<img name='pic'"+size+">");
  newWin.document.pic.src=path;
  newWin.document.write("</body></html>");
  newWin.document.close();  
}