<!-- Javascript code begins -->
var width   = "125";        // Width of Advertisements
var height  = "30";        // Height of Advertisements 
var target  = "_blank";     // Target window to open the ads

var ad=new Array()
// Write down the source urls of ad images
ad[0]='images/gcmseat.jpg';


var links=new Array()
//Write link to ads respectively
links[0]='http://www.gcorbett-motors.com';


 
var s = Math.floor(Math.random()*ad.length);
document.write('<a href="'+links[s]+'" target="'+target+'"><img src="'+ad[s]+'" width="'+width+'" height="'+height+'" border="0" alt="'+links[s]+'"></a>');

<!-- Javascript code ends -->
