// JavaScript Document				  
			rnd.today=new Date();
			rnd.seed=rnd.today.getTime();
			
			function rnd(){
				rnd.seed = (rnd.seed*9301+49297) % 233280;
				return rnd.seed/(233280.0);
				};
			
			function rand(number){
				return Math.ceil(rnd()*number);
				};
			
			var number=rand(2)-1
			
			if (number == 0) {
			document.write("<a href=http://www.ringtelco.com/internet.htm>") 
			document.write("<img src=images/ads/internet.gif width=160 height=98 hspace=5 alt=\"RingTelco offers Dial up and DSL Connections\" border=0></a>")
			}
			
			if (number == 1) {
			document.write("<a href=http://www.ringtelco.com/telephone.htm>") 
			document.write("<img src=images/ads/phone.gif width=160 height=98 hspace=5 alt=\"RingTelco offers local and long distance service\" border=0></a>")
			}