var browser = navigator.appName;
var topleftCode = '<img src="../images/layout/yellowUL1.gif" width="21" height="37" />';
var toprightCode = '<img src="../images/layout/orangeUR1.gif" width="21" height="37" />';

var bottomCode = document.createElement("tr");
var bottomHTML = '<td height="50%" valign="bottom" background="../images/layout/blueLT.gif"><img src="../images/layout/blueBL1.gif" width="21" height="37" /></td><td height="50%" valign="bottom" background="../images/layout/yellowRT.gif"><img src="../images/layout/yellowBR1.gif" width="21" height="37" /></td>';

	
function ieFix() {
	if (browser == "Microsoft Internet Explorer") {
		document.getElementById('leftSide').height = "50%";
		document.getElementById('leftSide').width = "21";
		document.getElementById('leftSide').vAlign = "top";
		document.getElementById('leftSide').background = "/images/layout/yellowLT.gif";
		document.getElementById('leftSide').innerHTML = topleftCode;
		
		document.getElementById('rightSide').height = "50%";
		document.getElementById('rightSide').width = "21";
		document.getElementById('rightSide').vAlign = "top";
		document.getElementById('rightSide').background = "/images/layout/orangeRT.gif";
		document.getElementById('rightSide').innerHTML = toprightCode;
		
	} else {
		document.getElementById('middleTD').rowSpan = "1";	
	}
}