function ElmHeight() {

	h=document.getElementById("asbestos-back").clientHeight;
	h3=document.getElementById("form").clientHeight;

	if(h<=600){
		document.getElementById("left-column").style.height=h3;
		document.getElementById("footer").style.top=h3+385;
		document.getElementById("wrapper").style.height=h3+385;
	}
	else {
		document.getElementById("left-column").style.height=h + 120;
		document.getElementById("footer").style.top=h + 430;
		document.getElementById("wrapper").style.height=h + 430;
	}
}
onload=ElmHeight