// JavaScript Document
var __imagePath = 'data/images/';

function showHideBtnTerug(show){
	if(show){
		$('btn_standvanzaken').style.display = 'none';
		$('btn_terug').style.display = 'block';
	}else{
		$('btn_standvanzaken').style.display = 'block';
		$('btn_terug').style.display = 'none';
	}
}

function init(){
	var clientHeight = f_clientHeight();
	var margin = 202;
	
	if(clientHeight < 620){
		clientHeight = 620;	
	}

	clientHeight -= margin;
	$('contentRow').style.height = (clientHeight)+'px';
	if(image = $('subBackgroundImage'))
		image.style.height = (clientHeight)+'px';
}

function setJunior(iscomfort){
	$('header').style.backgroundColor = '#92278f';
	$('logo').src = __imagePath+'logo_junior.gif';
	var block = $('block');
	block.src = __imagePath+'block_junior.gif';
	block.style.width = '44px';
	block.style.height = '44px';
	if((comfort = $('comfort_block')) && iscomfort)
		comfort.style.backgroundColor = '#E0CDE3';
}

function resetJunior(){
	$('header').style.backgroundColor = '#000000';
	$('logo').src = __imagePath+'logo.gif';	
	$('block').src = __imagePath+'block.gif';
	if(comfort = $('comfort_block'))
		comfort.style.backgroundColor = '';
}

function showAnimation(){
	document.write('<div style="position:absolute;left: 162px;top: 204px;"><div style="z-index: -1;"><object width="750" height="352" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" style=""><param name="movie" value="data/images/beginpagina.swf" /><param name="quality" value="high" /><param value="transparent" name="wmode" /><param name="bgcolor" value="#ffffff" /><embed width="750" height="352" src="data/images/beginpagina.swf" quality="high" bgcolor="#ffffff" wmode="transparent" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object></div></div>');	
}

window.onresize = function(){
	init();
}