// Sweet Function that Expands/Collapses the Main Log on the Homepage
// COURTESY OF The Big Noob, http://www.thebignoob.com

function showLog() {
	var d = document;
	if (open != true) {
		d.getElementById('full').style.display = "block";
		d.getElementById('initial').style.display = "none";
		d.getElementById('read').innerHTML = '<a href="javascript:void(0);" class="expand" onclick="javascript:showLog();">[ COLLAPSE NEWS ]</a>';
		open = true;
	} else {
		d.getElementById('full').style.display = "none";
		d.getElementById('initial').style.display = "block";
		d.getElementById('read').innerHTML = '<a href="javascript:void(0);" class="expand" onclick="javascript:showLog();">[ PAST NEWS ]</a>';
		open = false;
	}
}

function iFrameHeight(obj) {
  aID = obj.id;

  // if contentDocument exists, W3C compliant (Mozilla)
  if (document.getElementById(aID).contentDocument){
     obj.height = document.getElementById(aID).contentDocument.body.scrollHeight;
  } else {
   // IE
     obj.style.height = document.frames[aID].document.body.scrollHeight;
  }
}