// created by After Hours Teleconsulting
// developed for the Front Door Company skin package

fixPanes();

function fixPanes ()
{
	if (getHeight("dnn_HeaderPane")>1)
	{
		document.getElementById("headerPaneWrap").style.backgroundImage = "none"; 
	}
	if (getWidth("rightSideTable")>=701)
	{
		document.getElementById("topLeft").style.display = "none";
		document.getElementById("top").style.display = "none";
		document.getElementById("topRight").style.display = "none";
		document.getElementById("right").style.display = "none";
		document.getElementById("bottomRight").style.display = "none";
		document.getElementById("bottom").style.display = "none";
		document.getElementById("bottomLeft").style.display = "none";
		document.getElementById("left").style.display = "none";
	}
	if (getHeight("contactsPaneWrap")>1)
	{
	 	document.getElementById("menuWrap").style.paddingBottom = getHeight("contactsPaneWrap");
	}
}

function getWidth(sID) 
{
	var iReturnValue = 0;
	if(sID != null) 
	{
		iReturnValue = parseInt(document.getElementById(sID).offsetWidth); // removes the "px" at the end
	}
	return iReturnValue;
}

function getHeight(sID) 
{
	var iReturnValue = 0;
	if(sID != null) 
	{	
		iReturnValue = parseInt(document.getElementById(sID).offsetHeight); // removes the "px" at the end
	}
	return iReturnValue;
}
