function getbanner() {
	banner = new MakeArray(100);
        numbanner = 1;

        
        banner[0] = "<a href=reservations.html><img src=ads/caponeani.gif border=0 alt='Click to Take the Tour'></a>"

	//Make more as needed

	var now = new Date()
	var sec = now.getSeconds()

	return banner[sec % numbanner];
}

function MakeArray(n) {
	this.length = n;
	for (var i = 1; i <= n; i++) {
	        this[i] = 0 }
	    return this
}

function OpenNewWindow(url,winwidth,winheight)
{
NewWindow=window.open(url,'descr','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbar=no,scrollbars=no,resizable=yes,copyhistory=no,width='+winwidth+',height='+winheight)
}

