//=======================================================================================================
//-------------------------------------------------------------------------------------------------------
//	Custom Javascript functions
//-------------------------------------------------------------------------------------------------------
//=======================================================================================================
//-------------------------------------------------------------------------------------------------------
//	Toggle the "email this page" form
//-------------------------------------------------------------------------------------------------------
function ToggleEmailThisPage()
{
	FormObject	= document.getElementById( 'emailthispage' );
	DimObject	= document.getElementById( 'emailthispage-dim' );

	if( FormObject.style.display == "block" )
	{
		document.body.style.overflow	= "auto";
		FormObject.style.display		= "none";
		DimObject.style.display			= "none";
	}
	else
	{
		scroll(0,0);
		document.body.style.overflow	= "hidden";
		FormObject.style.display		= "block";
		DimObject.style.display			= "block";
	}
}
