     newurls=new Array()
     newurls[0]="http://www.bulletperformance.com/411_perf.htm"
     newurls[1]="http://www.bulletperformance.com/411_pt.htm"
     newurls[2]="http://www.bulletperformance.com/411_tip.htm"
     newurls[3]="http://www.bulletperformance.com/contact_hm.htm"
     newurls[4]="http://www.bulletperformance.com/um_perf_o.htm"
     newurls[5]="http://www.bulletperformance.com/wn_hm.htm"
     newurls[6]="http://www.bulletperformance.com/tip_hm.htm"
     newurls[7]="http://www.bulletperformance.com/um_rnd.htm"

 function picksite()
   {
	 
  var width="580", height="375";
  var left = (screen.width/2) - width/2;
  var top = (screen.height/2) - height/2;
  var styleStr = 'toolbar=yes,scrollbars=yes,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
  var msgWindow = window.open("","msgWindow", styleStr);

     now=new Date()
     num=(now.getSeconds())%4
     msgWindow.location.href = newurls[num]	 
     
   }