function StretchColumn($colShort,$colTall)
{
	var $cTall = document.getElementById($colTall);
	var $cShort = document.getElementById($colShort);
	var $cHeight = 0;
	
	if($cTall.offsetHeight)
	{
		$cHeight = $cTall.offsetHeight;
	} else if($cTall.style.pixelHeight) { 
		$cHeight = $cTall.style.pixelHeight;
	}
	
	if (Number($cHeight) < Number(GetScreenHeight()))
	{
		$cShort.style.height = "100%";
	} else {
		if ($cHeight < 725)
		{
			$cHeight = 725;
		}
		$cShort.style.height = ($cHeight + 100) + "px";
	}
}

window.onload = function()
{
	if (document.getElementById)
	{
		StretchColumn("SiteLeftColumn","BodyHolder");
		StretchColumn("SiteDropColumn","BodyHolder")
	} else {
		alert("You may encounter some display errors on this page/nPlease make sure are using an up to date browser.");
	}
}

window.onresize = function()
{
	window.onload();
	window.status = "liquidiris : " + GetScreenWidth() + " x " + GetScreenHeight();
	if (GetScreenWidth() < 970)
	{
		document.getElementById("SiteLeftColumn").style.width = "220px";
		document.getElementById("SiteContainer").style.width = "940px";
	} else {
		document.getElementById("SiteLeftColumn").style.width = "27%";
		document.getElementById("SiteContainer").style.width = "100%";
	}
}