// pdxdnb Common JS Functions

function urlMenu(that) {
	theURL = that.options[that.selectedIndex].value; 

	if (theURL) {
		window.location = theURL;
	}
}

function player(URL) { 
 window.open(URL,'PDXdnbAudioPlayer','resizable=0,scrollbars=0,width=260,height=216');
}

// Old stupid ad code that I conjured up...
/* var rand_int = Math.floor(Math.random()*3);

var ads = new Array(3)
ads[0] = '<img src="/static/img/240px_ads/0402-0.gif" style="height:243px;width:243px;" alt="The 11th Hour" title="The 11th Hour" name="pdxdnbad" />';
ads[1] = '<img src="/static/img/240px_ads/0402-1.gif" style="height:243px;width:243px;" alt="Gyrate Sucka" title="Gyrate Sucka" name="pdxdnbad" />';
ads[2] = '<img src="/static/img/240px_ads/0402-2.gif" style="height:243px;width:243px;" alt="360 Vinyl" title="360 Vinyl" name="pdxdnbad" />';

var ads_title = new Array(3)
ads_title[0] = 'The 11th Hour';
ads_title[1] = 'Gyrate Sucka';
ads_title[2] = '360 Vinyl';

function pageload() {
    adtimer = setTimeout("changead()", 5000);
    adcode = 0;
    titlecode = 0;
}

function changead() {
adcode = adcode + 1
if (adcode == "3") {
    adcode = 0
    }
titlecode = titlecode + 1
if (titlecode == "3") {
    titlecode = 0
    }

adsource = "http://www.pdxdnb.com/static/img/240px_ads/0402-" + adcode + ".gif"
window.document.pdxdnbad.src = adsource
window.document.pdxdnbad.title = ads_title[titlecode]

thetimer = setTimeout("changead()", 8000);
}
*/