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