// JavaScript Document

<!-- 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=3;


	// 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]="http://affiliates.trafficsynergy.com/42/3012/71";
	link[0]="http://affiliates.trafficsynergy.com/z/71/CD3012/";
	info[0]="Sign up to TrafficSynergy.com";

	image[1]="http://affiliates.trafficsynergy.com/42/3012/71";
	link[1]="http://affiliates.trafficsynergy.com/z/71/CD3012/";
	info[1]="Sign up to TrafficSynergy.com";

	image[2]="http://affiliates.trafficsynergy.com/42/3012/71";
	link[2]="http://affiliates.trafficsynergy.com/z/71/CD3012/";
	info[2]="Sign up to TrafficSynergy.com";
	
	
	// 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 -->
