 //Start of code to show or hide divs

var theDOM, styleSuffix, shownKeyword, hiddenKeyword, dhtml, plainSuffix;

if (document.layers) {
    theDOM = "document";
    styleSuffix = ".style";
    shownKeyword = "show";
    hiddenKeyword ="hide";
    dhtml = true;
    plainSuffix = "";
}
else
{
    theDOM = "document.getElementById(\'";
    styleSuffix = "\').style";
    shownKeyword = "block";
    hiddenKeyword = "none";
    dhtml = true;
    plainSuffix = "\')";
}

if(document.all && !document.getElementById) 
{
    document.getElementById = function(id) 
    {
         return document.all[id];
    }
} 
 
function showOrHide(theObject,theValue)
{
    if(dhtml)
    {
	var theObjectReference = eval(theDOM+ theObject + styleSuffix);
	if(theValue == 1)
	{
		if (document.layers)
		{		
			theObjectReference.visibility = shownKeyword;
		}
		else
		{ 
			theObjectReference.display = shownKeyword;
		}
	} 
	else 
	{
		if (document.layers)
		{		
			theObjectReference.visibility = hiddenKeyword;
		}
		else
		{
			theObjectReference.display = hiddenKeyword;
		}
	}

    }
}

function quickJump(list)
{
	if(list.options[list.selectedIndex].value == "x")
       	{
		window.status='Please select a page to go to.';
       	}
       	else
       	{
	  	window.status='Transferring...';
	  	location.href = list.options[list.selectedIndex].value;
       	}
}