function hiliteMenu(id,activePage)
	{
		document.getElementById(['menu'+id]).className = 'containerhi';
		document.getElementById(['menu'+id+'td']).className = 'menuitemhi';
		document.getElementById(['menu'+id+'arrow']).className = 'arrowhi';
	}
	
function unliteMenu(id,activePage)
	{
		if ( activePage == id )
			{
				// Don't do anything, menu is still active
			}
		else
			{
				document.getElementById(['menu'+id]).className = 'container';
				document.getElementById(['menu'+id+'td']).className = 'menuitem';
				document.getElementById(['menu'+id+'arrow']).className = 'arrow';
			}
	}
	
function hiliteProject(id)
	{
		document.getElementById(['project'+id]).style.background='#D6DFEF';
	}
	
function unliteProject(id)
	{
		document.getElementById(['project'+id]).style.background='';
	}

function hiliteSearch(id)
	{
		document.getElementById(['search'+id]).style.background='#D6DFEF';
	}
	
function unliteSearch(id)
	{
		document.getElementById(['search'+id]).style.background='';
	}
function openWindow(url, w, h, name){var winl = (screen.width-w)/2;var wint = (screen.height-h)/2;var settings  ='height='+h+',';settings +='width='+w+',';settings +='top='+wint+',';settings +='left='+winl+',';settings +='scrollbars=no,';settings +='resizable=no,';settings +='menubar=no,';settings +='location=no,';settings +='status=no';popupWin = window.open(url, name, settings);}
