<!--
/*********************************************************************************
** Warning!! all coding copyright of C.Odukwe - webmaster for CNO Designs Ltd.  **
** To copy, modify or use any code e-mail "chiedu@cnodesigns.co.uk"             **
** Random Link Generator V3.002a                                                **
*********************************************************************************/

// Generates two random linked images on every reload
// image selection - must be jpg or gif
// Format picname---alt tag---URL to go to

var AdFacts, PicCount, NewAd, adURL, parts, randonNum, Gone

AdFacts = new Array(
"subscribe.gif---Call The Station---#",
"subscribe.gif---Call The Station---#",
"banner.gif---Enjoy Naija101.1FM---#",
"banner2.gif---Tune to Naija101.1FM---#",
"banner2.gif---Tune to Naija101.1FM---#",
"banner2.gif---Tune to Naija101.1FM---#"
);

PicCount = AdFacts.length;
Gone = new Array(PicCount);

for (x=1; x<=1; x++){
randomNum = Math.floor((Math.random() * PicCount)); // generate random number
NewAd = AdFacts[randomNum]; // choose link from array
parts = NewAd.split("---"); // split chosen link into parts using --- as a guide

/*adURL = ("<br><embed src='lpcmtn.swf' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='430' height='45'></embed><br><a href=http://www.londonphonecards.co.uk target =_blank>Visit LondonPhonecards.co.uk for more info</a><br><br><a href='" + parts[2] + "'><img src='http://www.naijafm.com/banners/" + parts[0] + "' alt='" + parts[1] + "' border=0></a><br><br>");

	if (Gone[randomNum] != 1) {
		document.write(adURL);
		Gone[randomNum] = 1;
				 }
	else {
		x = x-1; // resetting x back to previous value to try again
		}
}*/
// -->
}