ads = new Array('ads/insurancestation.js', 'ads/democd.js')

function randomAd() {
	document.write('<script type="text/javascript" src="/' + ads[Math.round(Math.random() * (ads.length-1))] + '"></scr' + 'ipt>');
}

function includeAd(adfile) {
	document.write('<script type="text/javascript" src="/' + adfile + '"></scr' + 'ipt>'); 
}

winWidth = 800; 
winheight = 600;

if (screen){ // weeds out older browsers who do not understand screen.width/screen.height
   winWidth = screen.width;
   winHeight = screen.height;
}

function popupWindow(win){

	newWindow = window.open(win,'newWin','toolbar=no,location=no,scrollbars=no,resizable=yes,width='+winWidth+',height='+winHeight+',left=0,top=0');
	newWindow.focus();
}
