<!-- cloak

function startup(){
	db = new Array() 
	db[0] = new link("http://www.whatsup.ca/customers/boardwalksport/index.html", "http://www.whatsup.ca/images/paying_logo/boardwalksport_logo_sm.gif", "JLindeberg, Vera Moda, Jack and Jones", "Boardwalk Sport")
	db[1] = new link("http://www.whatsup.ca/customers/seventyseven/index.html", "http://www.whatsup.ca/images/paying_logo/seventyseven_logo_sm.gif", "Experience<br>77<br>Hamiltons Best Nightclub Experience", "77")
	db[2] = new link("http://www.whatsup.ca/customers/daynight/index.html", "http://www.whatsup.ca/images/paying_logo/daynight_logo_sm.gif", "Day Night Pharmacy", "Day Night Pharmacy")
	db[3] = new link("http://www.whatsup.ca/customers/mapletonsorganic/index.html", "http://www.whatsup.ca/images/paying_logo/mapletonsorganic_logo_sm.gif", "Organic Ice Cream and Yogurt", "Mapletons")
	db[4] = new link("http://www.whatsup.ca/customers/canadianoutback/index.html", "http://www.whatsup.ca/images/paying_logo/canadianoutback_logo_sm.gif", "If we won't use it , we won't sell it!", "Canadian Outback")
	db[5] = new link("http://www.whatsup.ca/customers/familymassagetherapy/index.html", "http://www.whatsup.ca/images/paying_logo/familymassagetherapy_logo_sm.gif", "Clinical Supplies, Benefect, Spa", "Family Massage Therapy")
	db[6] = new link("http://www.whatsup.ca/customers/candlelightinn/index.html", "http://www.whatsup.ca/images/paying_logo/candlelightinn_logo_sm.gif", "Niagara Falls", "Candle Light Inn")
	db[7] = new link("http://www.whatsup.ca/customers/kaytoo/index.html", "http://www.whatsup.ca/images/paying_logo/kaytoo_logo_sm.gif", "A Canadian Experience at Blue Mountain", "Kaytoo")
 }
function link(where,title,address,name) {
	
	this.where = where;
	this.title = title;
	this.address = address;
	this.name = name;
	return this
}

function RanNum(r) {
	today = new Date();
	startup();
	num = Math.floor(Math.abs(Math.sin(today.getSeconds()) * 1000 % db.length));
	return (num);
}


function reLoad() {
	location.href="rlink.htm";
}



function getRandomLink1() {

	n= RanNum(0);

	document.write("<font face='Helectiva' size=4>");
	document.write("<a href='" + db[n].where + "' target=new>" + "<img src='" + db[n].title + "' border=0>"  +  "</a><br>" + "<font face=tahoma size=1 color=white>" + db[n].address);

}

function getRandomLink2() {

      r=1;

	n= RanNum(r);
	n = n + r;

	if (n >= db.length){
		n = n - db.length;	
	}

	document.write("<font face='Helectiva' size=4>");
	document.write("<a href='" + db[n].where + "' target=new>" + "<img src='" + db[n].title + "' border=0>"  +  "</a><br>" + "<font face=tahoma size=1 color=white>" + db[n].address)
}

function getRandomLink3() {

      r=2;

	n= RanNum(r);
	n = n + r;

	if (n >= db.length){
		n = n - db.length;	
	}


	document.write("<font face='Helectiva' size=4>");
	document.write("<a href='" + db[n].where + "' target=new>" + "<img src='" + db[n].title + "' border=0>"  +  "</a><br>" + "<font face=tahoma size=1 color=white>" + db[n].address)
}



// -- decloak -->
