
function desc(msg)
{	window.status = msg;}
	

function clearstatus()
{	window.status = '';}


function Copyright(notice)
{	window.alert(notice + "opyright 2006 - 2010\n\rDouglas E. Klugh\n\r\n\rPlease refer to my legal statement.       ");
	return(false);}


function ShowCopyright()
{	
	window.alert("&copy;opyright 2006 - 2010\r\n\r\nDouglas E. Klugh\r\nAll rights reserved.     ");
	return(false);
}


function ActivateMenuOption(id)
{	document.getElementById(id).className='activeLink';}


function Toggle(id)
{	if (document.getElementById(id).style.display == 'none')
		document.getElementById(id).style.display = 'inline';
	else
		document.getElementById(id).style.display = 'none';}

