 function lib_open_img_window(src,width,height){ 
   if(width==0)
     width=500;
   width+=20;
   if(height==0)
     height=400;
   height+=20;
   if(height>600)
     height=600;
   var left = (screen.availWidth/2) - (width/2);
   var top = (screen.availHeight/2) - (height/2);
   info=window.open('/img_preview.php?src='+src,'info','resizable=1, scrollbars=1, toolbar=0, status=0, width='+width+', height='+height+', left='+left+', top='+top);
   info.focus();
 }

 function open_tel(id){
   width=250;
   height=120;
   var left = (screen.availWidth/2) - (width/2);
   var top = (screen.availHeight/2) - (height/2);
   info=window.open('/open_tel.php?id='+id,'info','resizable=1, scrollbars=1, toolbar=0, status=0, width='+width+', height='+height+', left='+left+', top='+top);
   info.focus();
 }

 function opw(foto){
   width=200;
   height=100;
   var left = (screen.availWidth/2) - (width/2);
   var top = (screen.availHeight/2) - (height/2);
   info=window.open('/katalog.php?id='+foto,'photo','resizable=1, scrollbars=1, toolbar=0, status=0, width='+width+', height='+height+',left='+left+', top='+top);
   info.focus();
 }
 
 function open_foto(foto,counts){
  
     width=650;
     height=600;

   var left = (screen.availWidth/2) - (width/2);
   var top = (screen.availHeight/2) - (height/2);
   info=window.open('/fotogalery.php?id='+foto+'&counts='+counts,'photo','resizable=1, scrollbars=1, toolbar=0, status=0, width='+width+', height='+height+',left='+left+', top='+top);
   info.focus();
 }
 
function open_res(parent){
     width=500;
     height=400;
   var left = (screen.availWidth/2) - (width/2);
   var top = (screen.availHeight/2) - (height/2);
   info=window.open('/response.php?parent='+parent,'photo','resizable=1, scrollbars=1, toolbar=0, status=0, width='+width+', height='+height+',left='+left+', top='+top);
   info.focus();
 }
 
  
 function open_foto2(foto){
  
     width=650;
     height=600;

   var left = (screen.availWidth/2) - (width/2);
   var top = (screen.availHeight/2) - (height/2);
   info=window.open('/photo_sal.php?id='+foto,'photo','resizable=1, scrollbars=1, toolbar=0, status=0, width='+width+', height='+height+',left='+left+', top='+top);
   info.focus();
 }