<!-- //funcions del costat del client

function Foto(ruta)
{
   i1 = new Image;
   i1.src = ruta;
   html = '<html><head><title>Alarmes i Foc S.L.</title></head>';
   html += '<body leftmargin=0 marginwidth=0 topmargin=0 marginheight=0>';
   html += '<center><img vspace=9 src="'+ruta+'" border=1 name="Foto" alt="Alarmes i Foc" ';
   html += 'onLoad="window.resizeTo(document.Foto.width+30,document.Foto.height+80)">';
   html += '</center></body></html>';
   popupImage = window.open('','foto','menubar=0,statusbar=0,scrollbars=0,resizable=1,width=100,height=100');
   popupImage.document.open();
   popupImage.document.write(html);
   popupImage.document.close();
   popupImage.document.focus();
}



-->
