// JavaScript Document
function setHeight(id)
{
var div = document.getElementById(id);
var offHeight = div.offsetHeight;
var count = Math.ceil(parseInt(offHeight) / 23) ;
var height = count * 23;
div.style.height = height + "px";
}