//*********************************************
// Function that Shows an HTML element
//*********************************************
function showDiv(divID)
{
	var div = document.getElementById(divID);
	div.style.display = ""; //display div
}

//*********************************************
// Function that Hides an HTML element
//*********************************************
function hideDiv(divID)
{
	var div = document.getElementById(divID);
	div.style.display = "none"; // hide
}
//*****************************************************************************
// Function that Hides all the Div elements in the select menu Value
//*****************************************************************************
function hideAllDivs()
{
	//Loop through the seclect menu values and hide all
	var selectMenu = document.getElementById("selectMenu");
	for (var i=0; i<=selectMenu.options.length -1; i++)
	{
		hideDiv(selectMenu.options[i].value);
	}
}
//*********************************************
// Main function that calls others to toggle divs
//*********************************************
function toggle(showID)
{
	hideAllDivs(); // Hide all
	showDiv(showID); // Show the one we asked for

}




var newwindow;
function popup(url)
{
	newwindow=window.open(url,'name','height=500,width=600');
	if (window.focus) {newwindow.focus()}
}

function popup2(url)
{
	newwindow=window.open(url,'name','scrollbars=yes,resizable=yes,width=640,height=600');
	if (window.focus) {newwindow.focus()}
}



monName = new Array ("January","February","March","April","May","June","July","August","September","October","November","December")
now = new Date
	
