//*********************
//	SIDEBAR 100%
//*********************
function SetDivSizes(){

	var theheight = getPageHeight();
	alert(theheight);
// EXPAND BACKGROUND
//	document.getElementById('resizeMe').style.height =  (theheight-639)+"px";

}

//*********************
//	HULPFUNCTIES
//*********************

function getPageHeight() {
	if (window.innerHeight && window.scrollMaxY) { // Firefox
		yWithScroll = window.innerHeight + window.scrollMaxY;
	} else if (document.body.scrollHeight > document.body.offsetHeight) { // all but Explorer Mac
		yWithScroll = document.body.scrollHeight;
	} else { // works in Explorer 6 Strict, Mozilla (not FF) and Safari
		yWithScroll = document.body.offsetHeight;
	}
	return yWithScroll;
}


