// JavaScript Documentwindow.onresize = function () { ini_hauteurs() }function ini_hauteurs(){	var obj_content = document.getElementById('content');	var obj_columncontent = document.getElementById('column_content');	var obj_columnleft = document.getElementById('column_left');	var obj_columnright = document.getElementById('column_right');		if(obj_columncontent)	{		if(obj_content.offsetHeight + 30 > obj_columnleft.offsetHeight)		{			detect = navigator.userAgent.toLowerCase();			if(parseInt(detect.charAt((detect.indexOf('msie')+1)+'msie'.length)) < 100 && detect.indexOf('win') + 1)			{				obj_columnleft.style.height = obj_content.offsetHeight + 27 +'px';			}			else			{				obj_columnleft.style.height = obj_content.offsetHeight + 27 +'px';			}		}		else		{			detect = navigator.userAgent.toLowerCase();			if(parseInt(detect.charAt((detect.indexOf('msie')+1)+'msie'.length)) < 6 && detect.indexOf('win') + 1)			{				obj_content.style.height = obj_columnleft.offsetHeight + 'px';			}			else if(parseInt(detect.charAt((detect.indexOf('msie')+1)+'msie'.length)) == 6 && detect.indexOf('win') + 1)			{				obj_content.style.height = obj_columnleft.offsetHeight - 55 + 'px';			}			else			{				obj_content.style.height = obj_columnleft.offsetHeight - 55 + 'px';			}		}	}}