function ieCssFix()
{
	window.status = document.documentElement.scrollHeight;
	document.getElementById("beam").style.width = (document.body.clientWidth - 316 >= 420) ? document.body.clientWidth - 296 : 420;
	document.getElementById("vbeam").style.height = (document.documentElement.scrollHeight - 500 >= 100) ? document.documentElement.scrollHeight - 500 : 100;

	document.getElementById("title").style.width = (document.body.clientWidth - 120 >= 420) ? document.body.clientWidth - 120 : 420;
}

if(navigator.userAgent.indexOf("MSIE") > -1)
{
	window.onload = ieCssFix;
	window.onresize = ieCssFix;
	//window.attachEvent("onload", ieCssFix);
	//window.attachEvent("onresize", ieCssFix);
}
