function getSinglecolHeight(){
 
    if (browser.isIE){
      singlecolHeight = document.all.singlecol.offsetHeight;
    } else { 
        singlecolObj = document.getElementById("singlecol");
        singlecolHeight = document.defaultView.getComputedStyle(singlecolObj, "").getPropertyValue("height");
	}
	
	return singlecolHeight;
}