
	 ValidationToolTipAnimation=true;
	 ValidationToolTipAnimationDelay=300;
	 OverlayAnimation=true;
	 OverlayAnimationDelay=500;
	 OverlayOpacity=0.4;
	 DefaultSize=62.5;
	 FontResizeSteps=5;

function increaseHeight() {

var shadowID = $('shadowContainer');
	
		if($defined(shadowID)) {
			shadowID.setStyle('display','block');
			var pageClientHeight = window.getScrollHeight();
			var actHeight=shadowID.offsetHeight;
			if(parseInt(pageClientHeight) > parseInt(actHeight))
			{
				var footerActHt = $('footer').offsetHeight;
				var footerHeight = parseInt(pageClientHeight) - parseInt(actHeight)+parseInt(footerActHt);			
				$('footer').setStyle('height',footerHeight);
				
				
			}
	
	}
	else
	{
		alert('error');
	}
}