﻿//Javascript Created by Computerhope http://www.computerhope.com

//store the quotations in arrays

var images = [], 
index = 0;

images[0] = "<a href='/eset/ESET_NOD32_Antivirus.html' target='_blank'><img src='images/ESET-Reseller-M.gif' width='200px' border='0px' alt='We are an ESET authorised UK Partner' align='top' /></a>";
images[1] = "<a href='/eset/ESET_Smart_Security.html' target='_blank'><img src='images/ESET-Reseller-M.gif' width='200px' border='0px' alt='We are an ESET authorised UK Partner' align='top' /></a>";
images[2] = "<a href='http://www.youtube.com/watch?v=_vL09TmKu6s&feature=player_profilepage' target='_blank'><img src='images/ESET-Reseller-M.gif' width='200px' border='0px' alt='We are an ESET authorised UK Partner' align='top' /></a>";

index = Math.floor(Math.random() * images.length);

document.write(images[index]);

//done



