// JavaScript Document
function noError(){return true;}
window.onerror = noError;

function floatText() {
	var content = document.getElementById('container');
	var contHeight = content.offsetHeight;
	var strHeight = contHeight+'px'
	document.getElementById('floattext').style.paddingTop=strHeight;
}
