<!--

// ***********************************************
// AUTHOR: WWW.CGISCRIPT.NET, LLC
// URL: http://www.cgiscript.net
// Use the script, just leave this message intact.
// Download your FREE CGI/Perl Scripts today!
// ( http://www.cgiscript.net/scripts.htm )
// ***********************************************

var bannerArray = new Array();
var myCount=0;
// Banner Code Assignment

<!--
bannerArray[0] = "<A HREF=\"http://www.puroparty.com/beas\"><IMG SRC=\"http://www.puroparty.com/banners/beas468x60.jpg\" border=\"0\" width=\"468\" height=\"60\"></A>";

bannerArray[1] = "<A HREF=\"http://www.puroparty.com/onb\"><IMG SRC=\"http://www.puroparty.com/onb/onb468x60.jpg\" border=\"0\" width=\"468\" height=\"60\"></A>";
-->





bannerRotate();

function bannerRotate() {

if(myCount > bannerArray.length-1){myCount=0;}

// Write out rotation
	if (document.all){			// it is IE
		document.all.l3.innerHTML=bannerArray[myCount];
	}

	else if (document.layers){	// it is NN

	document.layers.l1.document.layers.l2.document.open();
	document.layers.l1.document.layers.l2.document.write(bannerArray[myCount]);
	document.layers.l1.document.layers.l2.document.close();
	}
setTimeout("bannerRotate()", 7000);
myCount++;
}
// -->
