

function openPhotoWin(url, width, height, alt) {

   var ifOpera = (typeof(window.opera) != "undefined") ? 1 : 0;

   if (PhotoWin && (!ifOpera || (ifOpera && PhotoWin.document))) PhotoWin.close();

   if (alt) 

      WinHeight = height+20;

   else{

      alt='';

      WinHeight = height;

   }

      

   url = urlToScript+"images/photos/" + url;

   PhotoWin=window.open (url, 'PhotoWin', 'width='+width+',height='+WinHeight+',resizable=0, left='+(screen.width/2 - width/2)+', top=100');

   PhotoWin.document.open();

   PhotoWin.document.writeln("<html><head><title>Фотогалерея</title></head><BODY leftmargin=0 topmargin=0><img src="+url+" width="+width+" height="+height+" border=0><br><center>"+alt+"</center></BODY></html>");

   //PhotoWin.document.title = alt;

   PhotoWin.document.close();

   PhotoWin.focus();

}





function openVideoWin(url) {

   var ifOpera = (typeof(window.opera) != "undefined") ? 1 : 0;

   if (videoWin && (!ifOpera || (ifOpera && videoWin.document))) videoWin.close();

      

   videoWin=window.open (url, 'videoWin', 'width=400, height=300,resizable=0, left='+(screen.width/2 - 200)+', top=100');

   videoWin.focus();

   return false;

}

