/***********************************************************
 *
 * The function below is necessary to make the page look
 * consistent across all popular web browsers.  We try to
 * web standards compliant, but we can't control how the 
 * browsers would behave.
 *
 ***********************************************************/
function FixMargins()
{
	return true;
	
	var ie5_mac		= false, ie55 = false, ie7 = false;
	var nn4			= false, dom = false, opera = false, safari = false;
	var agent		= navigator.userAgent.toLowerCase();
	
	// need to check whether navigationDIV exists, because when tdnav is not visible, it won't exist
	var ndiv		= document.getElementById("navigationDIV");
	var cdiv		= document.getElementById("contentDIV")
	

	if (agent.indexOf("opera") != -1)
	{
		opera = true;
	}
	else if (agent.indexOf("safari") != -1)
	{
		safari = true;
	}
	else if (document.all)
	{
		var version = parseFloat(agent.substr(agent.indexOf("msie")+5, 3));
		if (agent.indexOf("mac") != -1 && version >= 5)
		{
			ie5_mac = true;
		}
		else
		{
			if (version >= 7)
			{
				ie7 = true;
			}
			else if (version >= 5)
			{
				ie55 = true;
			}
		}
	}
	
	if (ie55) // Internet Explorer v5.0 - 6.x
	{
		if (ndiv != null)
		{
			ndiv.style.marginLeft								= "3px";
			cdiv.style.width									= "530px";
		}
		else
		{
			cdiv.style.width									= "760px";
		}
		cdiv.style.marginLeft									= "3px";
	}
	else
	{
		if (ie7)
		{
			if (ndiv != null)
			{
				ndiv.style.minHeight							= "479px";
				ndiv.style.height								= "479px";
			}
			else
			{
				cdiv.style.width								= "760px";
			} 
			cdiv.style.minHeight								= "479px";
			cdiv.style.height									= "479px";
			// Vars tdnav & tdcont are written from Master.master.cs into a literal
			// They are the ClientIDs of navigationTD and contentTD
			document.getElementById(tdnav).style.minHeight		= "525px";
			document.getElementById(tdnav).style.height			= "525px";
			document.getElementById(tdcont).style.minHeight		= "525px";
			document.getElementById(tdcont).style.height		= "525px";
		}
		else
		{
			if (safari)
			{
				if (ndiv != null)
				{
					ndiv.style.marginLeft						= "6px";
					ndiv.style.minHeight						= "479px";
					ndiv.style.height							= "479px";
					cdiv.style.width							= "529px";
				}
				else
				{
					cdiv.style.width							= "760px";
				}
				cdiv.style.marginLeft							= "22px";
				cdiv.style.minHeight							= "479px";
				cdiv.style.height								= "479px";
			}
		}
	}
}