function ClearHistory() 
{
	window.history.length()
} // End of ClearHistory


function CookiesEnabled() 
{
	if (navigator.cookieEnabled == 0) 
	{
		return false
	}
	else 
	{
		return true 
	}
} // End of CookiesEnabled


function GotoPage(PageName) 
{
	location.replace(PageName) 
} // End of GotoPage



function HasRequiredSettings() 
{
	if (navigator.cookieEnabled == 0) 
	{
		return false
	}
	else 
	{
		return true 
	}
} // End of HasRequiredSettings
	
	
function PreviousPage() 
{
	window.history.back()
} // End of PreviousPage

	
function OpenHome() 
{
	
	sProperties = "height=620, width=800, menubar=no, resizable=no,";
	sProperties += "location=no, toolbar=no, scrollbars=yes";
				
	window.open("Home.asp", "Home", sProperties);

} // End of OpenHome;

