// JavaScript Document
function resizeForm()
{
	var myHeight = 0;
	
	if ( navigator.appName == "Microsoft Internet Explorer" ) 
	{
		//IE 6+ in 'standards compliant mode'
		myHeight = document.body.clientHeight;
		myHeight = myHeight - 100;
		
		with (document.getElementById("maincontainer").style)
		{
			height = myHeight + "px";
		}
		
	} else {
	
		//Non-IE
		if (document.getElementById("content").clientHeight >= window.innerHeight)
		{
			myHeight = document.getElementById("content").clientHeight;
			
		} else {
			myHeight = window.innerHeight;
			myHeight = myHeight - 100;
		}
		
		with (document.getElementById("maincontainer").style)
		{
			height = myHeight + "px";
		}
	}
		
	
	
}