// These javascript functions are required to perform actions on the Product Catalogue template

function setTableHeight() {
	var tbl1=document.getElementById("table1");
  	var tbl2=document.getElementById("table2");
  	var tbl3=document.getElementById("table3");
  	var tbl4=document.getElementById("table4");
  	var tbl5=document.getElementById("table5");

  	var max = Math.max(Math.max(Math.max((tbl1 != null ? tbl1.offsetHeight : 0),
  											(tbl2 != null ? tbl2.offsetHeight : 0)),
  												(tbl3 != null ? tbl3.offsetHeight : 0)),
  													(tbl4 != null ? tbl4.offsetHeight : 0),
  														(tbl5 != null ? tbl5.offsetHeight : 0));
  	if (tbl1 != null) tbl1.style.height=max;
  	if (tbl2 != null) tbl2.style.height=max;
  	if (tbl3 != null) tbl3.style.height=max;
  	if (tbl4 != null) tbl4.style.height=max;
  	if (tbl5 != null) tbl5.style.height=max;
  	document.getElementById("outer").style.height=max+10;
}


