// JavaScript Document

function SetHeight()
	{

		var browser=navigator.appName;
	
		if(browser == "Microsoft Internet Explorer")
		{
				var leftColumnHeight = document.getElementById("in-col-mid").style.pixelHeight;
				var RightColumnHeight = document.getElementById("in-col-rig").style.pixelHeight;
				
				maxHeight=Math.max(leftColumnHeight,RightColumnHeight); 
				
				if(maxHeight == leftColumnHeight)
				{
					document.getElementById("in-col-mid").style.height = maxHeight+"px";
					document.getElementById("in-col-rig").style.height = maxHeight+"px";
				}
				else if(maxHeight == RightColumnHeight)
				{
					document.getElementById("in-col-mid").style.height = maxHeight+"px";
					document.getElementById("in-col-rig").style.height = maxHeight+"px";
				}
		}
		else
		{

			var leftColumnHeight = document.getElementById("in-col-mid").offsetHeight;
			var RightColumnHeight = document.getElementById("in-col-rig").offsetHeight;
			
			//alert(leftColumnHeight+" - "+MiddleColumnHeight+" - "+RightColumnHeight);
			
			maxHeight=Math.max(leftColumnHeight,RightColumnHeight); 
				
				//alert(maxHeight);
				if(maxHeight == leftColumnHeight)
				{
					document.getElementById("in-col-mid").style.height = maxHeight+"px";
					document.getElementById("in-col-rig").style.height = maxHeight+"px";
				}
				else if(maxHeight == RightColumnHeight)
				{
					document.getElementById("in-col-mid").style.height = maxHeight+"px";
					document.getElementById("in-col-rig").style.height = maxHeight+"px";
				}
				
		}
	}