function InitializePage()
{
	// Test to see if the browser supports getElementById
	if (TestBrowser())
	{
		// Test to see if the browser accepts cookies
		if ((!document.cookie) && (document.getElementById('CookieWarning') != null))
		{
			document.getElementById('CookieWarning').style.display = '';
		}
	}

	return void(0);
}
function TestBrowser()
{
	// Return true if the getElementById function exists
	return (document.getElementById != null);
}
// Write an older brower message w/ a link to our browser requirements page
function WriteBrowserMessage()
{
	document.write('<p><h1>Why doesn\'t this website have a clean style or layout?</h1>If you see this message most likely you are using an older Internet browser which does not have the capability to use current Internet technologies. We <b>highly recommend</b> that you upgrade to a newer Internet browser. Its FREE. <a href="/CustomerService/TechnicalRequirements.cfm">Click here to learn more</a><br /><br /></p>');
	
	return void(0);
}
