<!--
/***************************************************************************************************
* Random Link Generator V1.02.
* This code will generate a random link every time the page is loaded or refreshed.
* All coding copyright of Chiedu Odukwe - webmaster@cnodesigns.co.uk
* This code is free to use, distribute and modify as long as this header is not modified or deleted.
* Thanks (c)2000
*****************************************************************************************************/

/***********************************************************************************
* How to use - You must enter both the required URL and ALT tag.
* Separate them with three dots. (Very Important!!).
* eg To add a link for yahoo.com write - "http://www.yahoo.com...Top search Engine",
* the ALT tag text will appear on your web page linked to the URL.
**************************************************************************************/

links = new Array(
"http://www.flashguru.co.uk...Flash Resources",
"http://www.protocol7.com...Protocol 7 Web Goodies",
"http://www.elated.com...Elated - Great Web Resources",
"http://www.virtual-fx.net...Flash Tutorials and more",
"http://www.actionscripts.org...Downloadable ActionScripts",
"http://www.useit.com...Web Usability Guide",
"http://www.actinic.co.uk...Actinic E-Commerce Software",
"http://www.macromedia.com...Macromedia Resources",
"http://www.javascript.com...JavaScript Resources",
"http://www.internet.com...Internet Problems Solved",
"http://www.computerarts.co.uk...Computer Arts",
"http://www.iwks.com...Internet Works Portal",
"http://www.wavcentral.com...Fun Sound Effects",
"http://www.insurrection.startrek.com/html/main.html...Star Trek Site",
"http://www.beme.com...Beme Fashion",
"http://www.pankpages.com...Pankpages Graphics",
"http://www.matinee.co.uk...Matinee New Media",
"http://www.balthaser.com...Balthaser New Media",
"http://allafrica.com/nigeria...Africa News Topics",
"http://www.which.net...Which Online Info",
"http://www.scientology.org...Learn About Scientology",
"http://www.essence.com...Essence Magazine",
"http://www.sohh...HipHop Online",
"http://www.streetsounds.com...Street Sounds",
"http://www.funkjazzkafe.com...FunkJazz Kafe",
"http://www.ultimatestyle.com...Ultimate Clothing",
"http://www.vibe.com...Vibe Magazine",
"http://www.handbag.co.uk...Handbag Fashion"
);

var LCount = links.length; // calculate no of links
var randomNum = Math.floor((Math.random() * LCount)); // generate random number
var TLink = links[randomNum]; // choose link from array
    parts = TLink.split("..."); // divide random link into url and alt tag using "..."

var DailyLink = "";
DailyLink+= ("<a href='" + parts[0] + "' target=_blank><img src=images/weeksite.gif width=62 height=60 alt='" + parts[0] + "' border=0></a><br>");
DailyLink+= ("<a href='" + parts[0] + "' target=_blank title='Check it Out'>" + parts[1] + "</a>");
document.write(DailyLink);
//-->
