var imgNo1 = 3
var image1= new Image();
image1.src='../Runtime/Uploads/CyclicImages/empleado.jpg'
image1.alt='Equipo humano'
var image2= new Image();
image2.src='../Runtime/Uploads/CyclicImages/cuadro.jpg'
image2.alt='Instalaciones domoticas'
var image3= new Image();
image3.src='../Runtime/Uploads/CyclicImages/sede.jpg'
image3.alt='Nuestra sede'
var step=1
var whichimage=1;
var imgNo=imgNo1;
function slideit()
{
if (!document.images)
return;
if (document.all)
document.getElementById('slide').filters.blendTrans.apply();
document.getElementById('slide').src = eval("image" + step + ".src")
document.getElementById('slide').alt = eval("image" + step + ".alt")
if (document.all)
document.getElementById('slide').filters.blendTrans.play()
whichimage=step;
if (step<imgNo)
step++;
else
step = 1;
setTimeout("slideit()",4000);
}
function slidelink()
{
if (whichimage==1)
window.open('www.bardelec.com');
else if (whichimage==2)
window.open('www.bardelec.com');
else if (whichimage==3)
window.open('www.bardelec.com');

}
