	function fixIEbugs()
	{
		var ver = navigator.userAgent.replace(/.*MSIE (\d+\.\d+).*/gi,"$1");
		if (navigator.userAgent.match(/.*?opera.*/i) || (! (ver <= 6) ))
		{
			return; //nothing to fix for normal browsers
		}
		
		//document.all('mcnt').style.width = 'auto';
		if ( (document.all('mc4f').offsetWidth > 990))
		{
			document.all('mcnt').style.width = 'auto';
			return;
		}
		

		if (document.all('mcnt'))
		{
			//document.all('mcnt10').style.pixelWidth = 1024;
			document.all('mcnt').style.width = '990px';
		}

	}