// DO NOT ADD <SCRIPT> blocks here!!
function openRadio()
{
	window.open("http://www.oebase.com/radio/band_radio.asp?bandClient=jasonmooreband&band=jmb%20radio&color=darkGrey", "jasonmoorebandradio", "width=450,height=270");
}

function PopWindow(url, name)
{
	//var newWind;
	//newWind = window.open(url,name,"scrollbars=yes,toolbar=yes,status=yes,menubar=yes,resizable=no,width=640,height=480");
	PopCustom(url, name, 640, 480);
	//This allows time for the event to complete before passing focus to the new window.
	//window.self.setTimeout('newWind.focus()', 400, 'JavaScript'); 
}

function SwapImageOn(imgId,name)
{
	var img = getImage(imgId);
	img.src = 'images/' + name + '_o.gif'
}

function SwapImageOff(imgId,name)
{
	var img = getImage(imgId);
	img.src = 'images/' + name + '.gif'
}

function PopCustom(url, name, width, height)
{
	window.open(url,name,"scrollbars=no,toolbar=no,status=no,menubar=no,resizable=no,width=" + width + ",height=" + height);
}