// JavaScript Document





function setDiv() {
  var wh = getPageSizeWithScroll(); // Window Height
  var d = document.getElementById('leftColumn') // Get div element
   // div height
  if (d != null)
  {
  d.style.height = wh + 'px';// Set div height to window height
  }
}


function getPageSizeWithScroll(){
	var _docHeight = document.height || document.body.offsetHeight;

	if (window.innerHeight && window.scrollMaxY) {// Firefox PC
		_docHeight = window.innerHeight + window.scrollMaxY - 280;
	}

		else if (document.body.scrollHeight > document.body.offsetHeight){ // IE7
		_docHeight = document.body.scrollHeight - 270;
	}

		else { // works in Explorer 6 Strict, Firefox Mac
		_docHeight = document.body.offsetHeight - 270;
  	}

	return _docHeight;
}