function windowWidth(){
	
	return windowSize('width');}

function windowHeight(){

	return windowSize('height');}

function windowSize(what) {
  
	var winWidth = 0;
	var winHeight = 0;

	// Niet Internet Explorer

	if(typeof(window.innerWidth) == 'number'){
		winWidth = window.innerWidth;
		winHeight = window.innerHeight;}

	// Internet Explorer 6 - Standards Compliant

	else if(document.documentElement && (document.documentElement.clientWidth || document.documentElement.clientHeight)){

		winWidth = document.documentElement.clientWidth;
		winHeight = document.documentElement.clientHeight;}

	// Internet Explorer 4+

	else if(document.body && (document.body.clientWidth || document.body.clientHeight)){

		winWidth = document.body.clientWidth;
		winHeight = document.body.clientHeight;}

	// Teruggeven

	if(what == 'width'){
		return winWidth;}
	else if(what == 'height'){
		return winHeight;}}

function setUp()
{
	
			var Content = document.getElementById('Content');
			Content.style.height = (windowHeight() - 180) + "px";
			
	
}