 window.onresize = function(){ 
		 var h=document.body.clientHeight;
	 	 var c=document.getElementById("content").offsetHeight;
		 cd=Math.max(h,c);
		if (h>c) cd=cd-92;
		document.getElementById("col").style.height=cd+"px";
	 }

function init()
	{
		 var h=document.body.clientHeight;
	 	 var c=document.getElementById("content").offsetHeight;
		 cd=Math.max(h,c);
		if (h>c) cd=cd-92;
		 document.getElementById("col").style.height=cd+"px";
	}
