// JavaScript Document
function imageLarge(url,w,h) 
{
 if(h==0) {h=w;}
 if(url!='') 
 {
  param='width='+w+',height='+h;
  foto=window.open('/images/view.php?foto='+url,'foto',param);
 }

}