function fixLayout()
{
	var cw = document.getElementById("page").offsetHeight;
	try{
		if ( document.documentElement.clientHeight < cw )
		{	
			document.getElementById("main-page").className = "scroll";
		}
		else
		{
			document.getElementById("main-page").className = "";
		}
	}catch(e){
	}
}
if (window.addEventListener){
	window.addEventListener("resize", fixLayout, false);
	window.addEventListener("load", fixLayout, false);
}
else if (window.attachEvent){
	window.attachEvent("onresize", fixLayout);
	window.attachEvent("onload", fixLayout);
}
function changeme(id, text) {
    var el = document.getElementById(id);
    if (el) el.innerHTML = text;
}


