// JavaScript Document

function PopUpFoto(src,width,height)
{
   var URL = src;
   var params = 'top=100,left=100,width=' + width + ',height=' + height + 
',scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,topmargin=0,leftmargin=0';
   winpops = window.open(URL,"",params);
}

