function openWindow(url, name, w, h)
{
	window.open(url,name,'scrollbars=no,menubar=no,height='+h+',width='+w+',resizable=no,toolbar=no,location=no,status=no,left=5, top=5');
}




function openSlideShowWdw(url, name, w, h)
{
	window.open(url,name,'scrollbars=no,menubar=no,height='+h+',width='+w+',resizable=no,toolbar=no,location=no,status=no,left=400, top=5');
}

//this function swaps out the link image onMouseOver, onMouseOut
//if the link is not for the current active page
function showListDesc(titleID,copyID)
{
	if(document.getElementById(copyID).style.display == 'block')
	{
		//alert("in if stmt - style is: "+document.getElementById(id).style.display);
		document.getElementById(copyID).style.display = 'none';
		document.getElementById(titleID).style.backgroundImage = 'url(images/list.gif)';		
		document.getElementById(titleID).style.backgroundPosition = '5px 4px';		

	}
	else
	{
		//alert("in else stmt - style is: "+document.getElementById(id).style.display);	
		document.getElementById(copyID).style.display = 'block';
		document.getElementById(titleID).style.backgroundImage = 'url(images/list-open.gif)';
		document.getElementById(titleID).style.backgroundPosition = '3px 6px';
	//alert("in else: "+document.getElementById(titleID).style.backgroundImage);
	}
}



function showSubmenu()
{
  	currentUrl = window.location.toString();
	pageIndex = currentUrl.lastIndexOf('/');
	curUrlLen = currentUrl.length;
	currentUrl = currentUrl.substring(pageIndex+1,curUrlLen);

	if(currentUrl == 'books.jsp' || currentUrl == 'galleria.jsp' || currentUrl == 'musicians.jsp' || currentUrl == 'inspResources.jsp' || currentUrl == 'links.jsp')
	{

		document.getElementById('subMenu').style.display = 'block';
	}
	else
	{
		document.getElementById('subMenu').style.display = 'none';
	}
}