var imgNo1 = 2
var image1= new Image();
image1.src='../Runtime/Uploads/CyclicImages/1dynamic_img3.jpg'
image1.alt='Vidushi InfoTech'
var image2= new Image();
image2.src='../Runtime/Uploads/CyclicImages/1dynamic_img1.jpg'
image2.alt='Google'
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('http://vidushiinfotech.com');
else if (whichimage==2)
window.open('http://google.com');

}

