//************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.htm", 
"the_duprees.htm", 
"julie_london_cd.htm", 
"diamonds.htm", 
"firehouse_five_cd.htm", 
"jo_stafford_cd.htm", 
"number_one_hits.htm", 
"one_hit_wonders.htm", 
"doowop_greats.htm", 
"teenagers_in_love.htm", 
"preservation_hall_cd.htm", 
"louis_prima_cd.htm", 
"country_gospel_cd.htm", 
"doo_wop_classics_cd.htm",
"the_sixties_cd.htm", 
"thats_rock_and_roll_cd.htm" ];

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/preservation_hall_cd.jpg", 
"images/louis_prima_cd.jpg", 
"images/country_gospel_cd.jpg", 
"images/doo_wop_classics.jpg",
"images/sixties_cd.jpg", 
"images/thats_rock_and_roll_cd.jpg" ];

pic_tag = [ 
"Doo Wop Jukebox", 
"The Duprees", 
"Julie London", 
"The Diamonds", 
"Firehouse Five Plus Two", 
"Jo Stafford", 
"Number One Hits", 
"One Hit Wonders", 
"Doo Wop Greats", 
"Teenagers In Love", 
"Preservation Hall", 
"Louis Prima", 
"Country Gospel", 
"Doo Wop Classics",
"The Sixties",
"That's Rock And Roll" ];
function displayLinks(){
while (i < 4){
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>&nbsp;&nbsp;");
}}displayLinks();