rnd.today=new Date();
rnd.seed=rnd.today.getTime();

function rnd() {
        rnd.seed = (rnd.seed*9301+49297) % 233280;
        return rnd.seed/(233280.0);
};

function rand(number) {
	var result = Math.ceil(rnd()*number);
	if (!result)result++;
        return result
};
var image_cnt = 3;
var image = rand(image_cnt);
var link;
var banner;
var width
var height
if (image==1) {
link="http://www.nexusradio.com/music-videos/artists/video_search.php?keywords=beyonce";
banner="http://www.nexusradio.com/images/left_image1.gif";
width="182";
height="429";
alt="Beyoncé";
}
if (image==2) {
link="http://www.nexusradio.com/music-videos/artists/video_search.php?keywords=lady+gaga";
banner="http://www.nexusradio.com/images/left_image2.gif";
width="182";
height="429";
alt="Lady GaGa";
}
if (image==3) {
link="http://www.nexusradio.com/music-videos/artists/video_search.php?keywords=mariah+carey";
banner="http://www.nexusradio.com/images/left_image3.gif";
width="182";
height="429";
alt="Mariah Carey";
}
document.write('<center><a href="' + link + '" target="_top">');
document.write('<img src="' + banner + '" width=' + width + ' height=' + height + ' border=0 alt="' + alt + '"></a>');
document.write('</center>');

