function changeHeight(swfHeight) {
	swfHeight += "px";
	
	document.getElementById("flashcontent").style.height = swfHeight;
	
	if(document.all) {
		//HELLO IE6
		document.getElementById("landing").style.height = swfHeight;
	}
}