<!--
function randadd2()
{
//create an array of add images
 var i = new Array(new Image(), new Image(), new Image(),new Image(), new Image(), new Image(),new Image());
 i[0].src="imgs/rghtsdimgs/2/1.gif";
 i[1].src="imgs/rghtsdimgs/2/2.gif";
 i[2].src="imgs/rghtsdimgs/2/3.gif";
 i[3].src="imgs/rghtsdimgs/2/4.gif";
 i[4].src="imgs/rghtsdimgs/2/5.gif";
 i[5].src="imgs/rghtsdimgs/2/6.gif";
 i[6].src="imgs/rghtsdimgs/2/7.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()*7)-1;
 while(pictnum<0 || pictnum>7) pictnum=Math.round(Math.random()*7)-1;
 
//change the banner add picture
 document.link2.src=i[pictnum].src;

}
//-->
