// JavaScript Document
function colEQ(leftid,rightid,addtoid,offset) {
	var lefth, righth, dif, add;
	if (document.getElementById(leftid) && document.getElementById(rightid))
	{
		lefth = document.getElementById(leftid).offsetHeight;
		righth = document.getElementById(rightid).offsetHeight;
		if (righth > lefth) {
			dif = righth - lefth;
			add = dif + offset;
			document.getElementById(addtoid).style.paddingBottom = add+'px';
		}
	}
}
