function launchPlayer() {
var theurl = "/player.php";
window.open(theurl,'playerWindow','height=365,width=500,toolbar=0,location=0,directories=0,status=1,menubar=0,resizable=0,scrollbars=0');
}

function popImage(picid) {
var theurl = "/photos/viewPic.php?picid="+picid;
window.open(theurl,'picViewer','height=1,width=1,toolbar=0,location=0,directories=0,status=1,menubar=0,resizable=0,scrollbars=0');
}

function expandCollapse(panel) {
if (document.getElementById(''+panel+'').style.display == "none") {
	document.getElementById(''+panel+'').style.display = "block"; 
} else if (document.getElementById(''+panel+'').style.display == "block") {
	document.getElementById(''+panel+'').style.display = "none"; }
}

function toggle(section) {
if (document.getElementById(''+section+'').style.display == "block") { document.getElementById(''+section+'').style.display="none";
} else if (document.getElementById(''+section+'').style.display == "none") { document.getElementById(''+section+'').style.display="block"; }
}
