function removeWhitespace()
{
	var div;


	try
	{
		div = document.getElementById("imgContainer");

		if(isIE())
		{	
			
			var childDIV = div.childNodes[0];
	
		
			childDIV.removeChild(childDIV.childNodes[1]); // remove &nbsp;
	
		
			var bgColorValue = document.getElementById("bgColorContainer").innerHTML;

			var myDIV = document.getElementById('bgRich');
       			 var myDIV2 = document.getElementById('bgRich2');

			myDIV.style.backgroundColor= bgColorValue;
		
      			 myDIV2.style.backgroundColor= bgColorValue;
		}
		else
		{
			var bgColorValue = document.getElementById("bgColorContainer").innerHTML;
			var myDIV = document.getElementById('bgRich');
       			 var myDIV2 = document.getElementById('bgRich2');

			myDIV.style.backgroundColor= bgColorValue;
		
      			 myDIV2.style.backgroundColor= bgColorValue;


			var pageHeaderInnerHTML = div.childNodes[1].innerHTML.toString();
			div.childNodes[1].innerHTML = pageHeaderInnerHTML.substring(0,pageHeaderInnerHTML.lastIndexOf('>')+1);
		}
	
	}
	catch(e) { }
}


function isIE()
{
	if(navigator.userAgent.indexOf("Firefox")!=-1)
	{
		var versionindex=navigator.userAgent.indexOf("Firefox")+8
		if (parseInt(navigator.userAgent.charAt(versionindex))>=1)
		{
			return false;
		}
	}
	else
		return true;

}