//************This Header Must Remain Attached ********** You May Not Remove This Header********
//Written by John Farquharson twisepk@yahoo.com - Completed Sat Feb 15 MMIII @ 9:58 P.M. EDST  *
//Rotating Image - Link Generator Copyright (MMIII) 2003 Daworx Web Design                     *
//Author continues to hold all rights to ownership of this JavaScript - copyright 2003 (MMIII) *
//Tested in Internet Explorer 5.5 / Netscape 6.1 / Opera 6.0				       *
//************This Header Must Remain Attached ********** You May Not Remove This Header********
var i = 0;
var da_link = [ 
"doo_wop_jukebox.html", 
"the_duprees.html", 
"julie_london_cd.html", 
"the_diamonds.html", 
"firehouse_five_cd.html", 
"jo_stafford_cd.html", 
"number_one_hits.html", 
"one_hit_wonders.html", 
"doo_wop_greats.html", 
"teenagers_in_love.html", 
"instrumental_rocksoul_cd.html", 
"the_sixties_cd.html", 
"preservation_hall_cd.html", 
"louis_prima_cd.html", 
"country_gospel_cd.html", 
"doo_wop_classics.html", 
"thats_rock_and_roll_cd.html" ];

var an_image = [ 
"images/doo_wop_jukebox.jpg", 
"images/best_of_duprees.jpg", 
"images/julie_london_cd.gif", 
"images/diamonds_25_golden_hits.jpg", 
"images/firehouse_cd.jpg", 
"images/jo_stafford_cd.jpg", 
"images/number_one_hits.jpg", 
"images/one_hit_wonders.jpg", 
"images/doo-wop_greats.jpg", 
"images/teenagers_in_love.jpg", 
"images/rock_soul_instrumental_cd.jpg", 
"images/sixties_cd.jpg", 
"images/preservation_hall_cd.jpg", 
"images/louis_prima_cd.jpg", 
"images/country_gospel_cd.jpg", 
"images/doo_wop_classics.jpg", 
"images/thats_rock_and_roll_cd.jpg" ];

pic_tag = [ 
"Doo Wop Jukebox", 
"The Duprees ~ Best Of", 
"Julie London", 
"The Diamonds", 
"Firehouse Five Plus Two", 
"Jo Stafford", 
"Number One Hits", 
"One Hit Wonders", 
"Doo Wop Greats", 
"Teenagers In Love", 
"Rock & Soul Instrumentals", 
"The Sixties", 
"Preservation Hall", 
"Louis Prima", 
"Country Gospel", 
"Doo Wop Classics", 
"Thats Rock n Roll" ];

function displayLinks(){
while (i < 3){
i++;
var an_day = Math.floor(Math.random()*da_link.length);
document.write ("<a href=" + da_link[an_day] + " target='_blank'><img src=" + an_image[an_day] + " width='160' height='150' border='1' alt='CLICK To View " + pic_tag[an_day] + " CD Song Titles'></a>");
if (i <= 2){document.write("<hr width='150' size='1' color='#D63194'>");}
}}displayLinks();