 function CarregaImatge(imatge,ample,alt){
    var pantalla;
	var margeAmple=40;
	var margeAlt=40;
	
    pantalla = "menubar=no,scrollbars=no,status=no,width=" + (ample+margeAmple) 
                + ",height=" + (alt+margeAlt);
    msg = open("","",pantalla);
    msg.document.open();
    msg.document.writeln("<HTML><HEAD><title>FEDOR S.A.</title><link href='../estils/estils.css' rel='stylesheet' type='text/css'></HEAD><BODY>");
	msg.document.writeln('<CENTER>');
    msg.document.writeln('<IMG SRC='+imatge+' WIDTH=\"'+ample+'\" HEIGHT=\"'+alt+'\" >');
	msg.document.writeln('</CENTER>');
    msg.document.writeln("</BODY></HTML>");
    msg.document.close();
  }


