var popwin="false";
var popwin;
var str;

function foto(url,w,h,pavad,tekstas,backgr)
{




  ClosePopWindow();

popwin = window.open("","langas",'width=' + w + ',height=' + h + ',resizable=1,scrollbars=0,menubar=no,top=20,left=0');

str='<html><head><title>'+pavad+'</title></head><body bgcolor='+backgr+' marginwidth="0" marginheight="0" leftmargin="0" topmargin="10"><center><img src='+url+'></center><font face="Arial" size="2"><p align=center>'+tekstas+'</p></font></body></html>';

popwin.document.write(str);

  if ( popwin!="false" )
  {    
    if ( popwin.closed ) {} else
    {
      if ( popwin.focus ) popwin.focus();
    }
  }	
}

function ClosePopWindow() 
{
  if ( popwin!="false" )
  {                                
    if ( popwin.closed ) {} else
    {
      popwin.close(); 
    }
  }
   
  popwin="false"; 
}