// GLOBAL JAVASCRIPT FILE
// THESE FUNCTIONS ARE USED THROUGHOUT THE SITE AND ARE NOT SPECIFIC TO ANY PAGE

// function sets height of an element to the viewable height
function setFullHeight(id)
{
	var doc_height = document.all ? document.body.clientHeight : window.innerHeight;
	document.getElementById(id).style.height = doc_height + "px";
}

function setAllHeights()
{
	setFullHeight("container");
	setFullHeight("body");
}