function determineHeight()
   {	
	 divHeight = document.getElementById("Div").clientHeight;	
	 if (navigator.appName == "Netscape")
	 {	
	 main = parent.document.getElementById("main");
	 theRules = document.styleSheets[0].cssRules;	
	 x = (divHeight + 62);
	 if (x < 622)
			  {
				x = 622;
				}							
	 theRules[0].style.top = (x + "px");
	 main.height = x;	 	    
	 }	 	 
	 if (navigator.appName == "Microsoft Internet Explorer")     // If Internet Explorer
			{	
			if (parent.document.styleSheets[0].rules)     // If Internet Explorer
			{			
			theRules = parent.document.styleSheets[0].rules;
			} 
			main = parent.document.getElementsByName("main")[0];
			x = (divHeight + 0);
			if (x < 500)
			  {
				x = 500;
				}							
			}	
			thisPage = location.href.slice(23,-5);
			if (thisPage == "employmentform" || "employmentform.htm")
			 {
			 x += 60;
			 }					 	
			  theRules[0].style.top = x;	
			  main.height = x; 
	 }
 