<!--
function randadd1()
{
//create an array of add images
 var i = new Array(new Image(), new Image(), new Image(),new Image(), new Image(), new Image(),new Image(),new Image());
 i[0].src="imgs/rghtsdimgs/1/1.gif";
 i[1].src="imgs/rghtsdimgs/1/2.gif";
 i[2].src="imgs/rghtsdimgs/1/3.gif";
 i[3].src="imgs/rghtsdimgs/1/4.gif";
 i[4].src="imgs/rghtsdimgs/1/5.gif";
 i[5].src="imgs/rghtsdimgs/1/6.gif";
 i[6].src="imgs/rghtsdimgs/1/7.gif";
 i[7].src="imgs/rghtsdimgs/1/8.gif";
 
// I use constants so it will be easy to change values if I put up new adds 
 var INTELLIMOUSE="script589128_0_2.html#a";
 var SIMCITY="script589128_0_2.html#b";
 var QUICKEN="script589128_0_2.html#c";
 
//get a random number between 0 and the number of adds available 
 var pictnum=Math.round(Math.random()*8)-1;
 while(pictnum<0 || pictnum>8) pictnum=Math.round(Math.random()*8)-1;
 
//change the banner add picture
 document.link1.src=i[pictnum].src;

}
//-->
