theSameHeight();
function theSameHeight(){
	thecol1=document.getElementById("list");
	cols1=thecol1.offsetHeight;
	thecol2=document.getElementById("mainContent");
	cols2=thecol2.offsetHeight;
	thecol3=document.getElementById("showProduct");
	cols3=thecol3.offsetHeight;
	if(cols1>cols2){
		cols2=cols1;
	}
	if(cols2<cols3){
		cols2=cols3;
	}
	thecol1.style.height=cols2+"px";
	thecol2.style.height=cols2+"px";
	thecol3.style.height=cols2+"px";
}
