// Basic JavaScript for use with the web site

function GotoPageNicely(theItem, optOpenInSeperateWindow)
{
	// Make sure the item exists
	if (theItem)
	{
		theItem.blur();
		doDefault = true;

		// Check if the second param was passed
		if (optOpenInSeperateWindow)
		{
			if (optOpenInSeperateWindow == true)
				doDefault = false;
		}	// End of check if the parameter was passed

		// Check if we want to open in a seperate window
		if (doDefault == false)
		{
		}	// End of check if we want to open the link in a seperate window
	}	// End of check if the item exists or not
}	// GotoPageNicely(thePage)

function SetColorAndText(theObject, theColor, statusText)
{
	if (theObject)
		theObject.style.color = theColor;
	if (statusText)
	{
		window.status = statusText;
		return false;
	}
}	// SetColorAndText()
