<!-- Hide the script from non-Javascript browsers
	// 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] = "_top";
		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]="../img/banner-onlinehoteles468.gif";
	link[0]="http://www.onlinehoteles.com/?source=killersitesdesign_banner";
	info[0]="Online Hoteles - Cabaņas y Hoteles en Argentina y Brasil";
	target[0]="_top";

	image[1]="../img/banner-killersitesar468.gif";
	link[1]="http://www.killersites.com.ar/?source=killersitesdesign_banner";
	info[1]="Flash MX 2004, Actionscript, Dreamweaver Training Courses";
	target[1]="_top";

	
		image[2]="../img/banner-onlinehotelesar468.gif";
	link[2]="http://www.online-hoteles.com.ar/?source=killersitesdesign_banner";
	info[2]="Online Hoteles - Oferta de Hoteles y Cabaņas en Argentina y Brasil";
	target[2]="_top";
	
	// 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 -->
