function flash(pad,hoog,breed){
	
	document.writeln('<object type="application/x-shockwave-flash" data="'+pad+'" width="'+breed+'" height="'+hoog+'">');
	document.writeln('<param name="movie" value="'+pad+'" />');
	document.writeln('</object>');

}

function ge(id){
	return document.getElementById(id);
}

function resize(){
	
	/*liveextra = 140; //70
	
	var myWidth = 0, myHeight = 0;
	if( typeof( window.innerWidth ) == 'number' ) {
		//Non-IE
		myWidth = window.innerWidth;
		myHeight = window.innerHeight;
	} else if( document.documentElement &&
	   ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
		//IE 6+ in 'standards compliant mode'
		myWidth = document.documentElement.clientWidth;
		myHeight = document.documentElement.clientHeight;
	} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
		//IE 4 compatible
		myWidth = document.body.clientWidth;
		myHeight = document.body.clientHeight;
	}
	
	//myHeight= myHeight - 160;
	
	contentvak = ge('body').offsetHeight;
	menuHoog = ge('menu').offsetHeight;
	alsoseeblok = ge('alsosee').offsetHeight;
	
	//alert(contentvak);
	//alert(menuHoog);
	if( (contentvak > menuHoog) && (contentvak > alsoseeblok) )
		ge('footer').style.marginTop = (contentvak - 320 + liveextra) + 'px';
	else if( (menuHoog > (alsoseeblok-120)) )
		ge('footer').style.marginTop = (menuHoog - 320 + liveextra) + 'px';
	else
		ge('footer').style.marginTop = (alsoseeblok - 440 + liveextra) + 'px';
*/
}


/*function resizeVol(){

	liveextra = 100;

	var myWidth = 0, myHeight = 0;
	if( typeof( window.innerWidth ) == 'number' ) {
		//Non-IE
		myWidth = window.innerWidth;
		myHeight = window.innerHeight;
	} else if( document.documentElement &&
	   ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
		//IE 6+ in 'standards compliant mode'
		myWidth = document.documentElement.clientWidth;
		myHeight = document.documentElement.clientHeight;
	} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
		//IE 4 compatible
		myWidth = document.body.clientWidth;
		myHeight = document.body.clientHeight;
	}
	
	//myHeight= myHeight - 160;
	
	contentvak = ge('body').offsetHeight;
	menuHoog = ge('menu').offsetHeight;

	contentMarginTop = 240;
	contentHeader = 39;
	contentTotaal = contentvak + contentMarginTop + contentHeader;
	
	menuFlash = 220;
	menuLogo = 28;
	menuTotaal = menuFlash+ menuLogo + menuHoog;
	
	if(menuTotaal > contentTotaal){
		hoogte = menuTotaal;
	} else {
		hoogte = contentTotaal;
	}

	hoogteFooter = 174;
	
	contentFooter = contentvak + hoogteFooter;
	
	hoogte = hoogte + hoogteFooter;
	
	myHeight = myHeight - 679;
	hoogte = hoogte - 780;
	
	if(myHeight > hoogte){
		ge('footer').style.marginTop = myHeight + 'px';
	} else {
		ge('footer').style.marginTop = hoogte + 'px';
	}

}



window.onload = resize;
window.onresize = resize;
*/