<!-- Hide the script from non-Javascript browsers

/*** Feel free to use this script, just leave these comment lines. ***/
/***         Goetz's Banner Script copyright 1998 Lawrence Goetz   ***/
/***         goetz@lawrencegoetz.com http://www.lawrencegoetz.com/ ***/

	// Indicate how many banner ads there are.
	var amount=8;


	// Array Function.
	function makeArray(len) {
		for (var i = 0; i < len; i++) 
			this[i] = null;
		this.length = len;
	}

	// Array Function for target in frames. 
	// You can adjust the default here if you like.
	// The default is _self.
	function makeTargetArray(len) {
		for (var i = 0; i < len; i++) 
			this[i] = "_self";
		this.length = len;
	}

	// Generate's the arrays.
	image = new makeArray(amount);
	link = new makeArray(amount);
	target = new makeTargetArray(amount);
	info = new makeArray(amount);

	// Place your banner information here. Start at index number 0.

	image[0]="radios.gif";
	link[0]="/home.htm";

	image[1]="mceoc3.gif";
	link[1]="/home.htm";

	image[2]="evac.gif";
	link[2]="/home.htm";
	
	image[3]="naec.gif";
	link[3]="/home.htm";
	
	image[4]="mcc.gif";
	link[4]="/home.htm";

	image[5]="deputy.gif";
	link[5]="/home.htm";

	image[6]="csepp_banner.gif";
	link[6]="/home.htm";

	image[7]="vernonia.gif";
	link[7]="/home.htm";
	
	// Randomly pick a banner to display.
	function rand(n) {
		seed = (0x015a4e35 * seed) % 0x7fffffff;
		return (seed >> 16) % n;
	}
	        
	var now = new Date();
	var seed = now.getTime() % 0xffffffff;
	var position=rand(amount);

// -- End Hiding Here -->