<!-- Begin
var theImages = new Array()

theImages[0] = 'images/adsl.gif'
theImages[1] = 'images/easicall.gif'
theImages[2] = 'images/myeldo.gif'

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function BannerRotator(){
document.write('<img src="'+theImages[whichImage]+'">');
}

function openwin(Page,Title,w,h){	
	LPos = (screen.width - w)/2;
	TPos = (screen.height - h)/2;
	
	window.open(Page,Title,"height="+h+",width="+w+",scrollbars=yes,resizable=no,maximize=no,left="+LPos+", top="+TPos);	
}
//  End -->


