window.onload = rolloverInit;

function rolloverInit() {
	for (var i=0; i<document.images.length; i++) {
		if (document.images[i].id != "") {
			setupRollover(document.images[i]);
		}
	}
}

function setupRollover(thisImage) {
	thisImage.outImage = new Image();
	thisImage.outImage.src = thisImage.src;
	thisImage.onmouseout = function() {
		this.src = this.outImage.src;
	}
	
	thisImage.overImage = new Image();
	thisImage.overImage.src = "../Images/links/" + thisImage.id + "_over.gif";
	thisImage.onmouseover = function() {
		this.src = this.overImage.src;
	}
}

function opencoupon()
      { 
OpenWindow=window.open("coupon.html","newwin","height=800,width=840,toolbar=yes,scrollbars="+scroll+",menubar=no");

OpenWindow.document.close()
self.name="main"
}

function openad()
      { 
OpenWindow=window.open("wcdreamcruisemap.html","adwin","height=800,width=800,toolbar=yes,scrollbars="+scroll+",menubar=no");

OpenWindow.document.close()
self.name="main"
}

