if (document.getElementsByTagName && document.getElementById) {
	if (window.addEventListener) {window.addEventListener('load', setColH, false);}  // FF/chrome/Oprah
	else if (window.attachEvent) {window.attachEvent('onload', setColH);}  // IE
	}

function setColH(){
	var cols=new Array();
	var col_height;
	
	cols[0] = document.getElementById('ts1').offsetHeight;
	cols[1] = document.getElementById('ts2').offsetHeight;
	//alert(cols[0]+"    "+cols[1]);
	cols.sort(sortNumber);
	col_height = cols[0];
	//alert(cols[0]);
	document.getElementById('ts1').style.height = col_height+"px";
	document.getElementById('ts2').style.height = col_height+"px";

//alert(document.getElementById('about').offsetHeight);
//alert(document.getElementById('about').offsetTop);
	//col_height = 330;
	//alert(col_height);
	//document.getElementById('about').style.height = col_height+"px";

function sortNumber(a,b){
	return b - a;
	}
	}
