﻿<!--
// PRELOADING IMAGES
if (document.images) {
 img_on =new Image();  
 img_on.src ="/PublishingImages/logos/patrocinadors/texsa.gif"; 
 img_off=new Image();  
 img_off.src="/PublishingImages/logos/patrocinadors/texsa_out.gif"; 
 
 img_on1 =new Image();  
 img_on1.src ="/PublishingImages/logos/patrocinadors/weber.gif"; 
 img_off1=new Image();  
 img_off1.src="/PublishingImages/logos/patrocinadors/weber_out.gif"; 
 
}
function handleOver() { 
 if (document.images) document.Banner.src=img_on.src;
}

function handleOut() {
 if (document.images) document.Banner.src=img_off.src;
}

function handleOver1() { 
 if (document.images) document.Banner1.src=img_on1.src;
}

function handleOut1() {
 if (document.images) document.Banner1.src=img_off1.src;
}


//-->

