function popUp(URL,width,height)
{
	var day = new Date();
	var id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+width+",height="+height+",left = 390,top = 367.5');");
}
function show(video)
{
	popUp('showVideo.php?video=' + video,500,400);
}
function hear(sound)
{
	popUp('hearSound.php?sound=' + sound,500,200);
}
function togglePhoto(x,count)
{
	for (var i = 1; i <= count; i++)
	{
      	var tempDivId = "divImage" + i;
      	document.getElementById(tempDivId).style.display = 'none'; 
 	}
 	var divId = "divImage" + x;
 	document.getElementById(divId).style.display = 'block';
}
function hideShowAlbums()
{
	if(document.getElementById("divAlbums").style.display == 'none')
	{
		document.getElementById("divAlbums").style.display = 'block';
	}
	else 
	{
		document.getElementById("divAlbums").style.display = 'none'
	}
}
