// JavaScript Document

// Function to open 210 x 250 Media Player windows
function OurRadio(url) {
	RadioWin=window.open(url,"radio","width=210,height=250,toolbar=no,scrollbars=no,menubar=no,resize=yes,status=no,left=0,top=0");
}

//function to display a photo
function showPhoto (whichPhoto) {
if (document.getElementById) {
	document.getElementById('placeholder').src = whichPhoto.href;
	if (whichPhoto.title) {
		document.getElementById('desc').childNodes[0].nodeValue = whichPhoto.title;
	}
	else {
		document.getElementById('desc').childNodes[0].nodeValue = whichPhoto.childNodes[0].nodeValue;
	}
	return false;
	}
	else {
		return true;
	}
}

function toggleMenu(currMenu) {
	if (document.getElementById) {
	thisMenu = document.getElementById(currMenu).style
		if (thisMenu.display == "none") {
			thisMenu.display = "block"
				}
		else { thisMenu.display = "none" }
		return false
	}
	else {
		return true
	}
}

//add copyright stuff
var d = new Date();
var cYear= d.getFullYear();

