function makeVisible(){         
	document.getElementById('belownav').style.height='135px';
	document.getElementById('belownav').style.width='565px';
	document.getElementById('flashOverHP').style.display='none';
	document.getElementById('theFlash').style.visibility='visible';  
} 

function resizeBanner(large) { 
	if (large == 'true') {    
		document.getElementById('belownav').style.height='513px';
		document.getElementById('belownav').style.width='783px';
		document.getElementById('flashOverHP').style.height='513px';  
		document.getElementById('flashOverHP').style.width='783xpx';		
	} else {                                                                  
		document.getElementById('belownav').style.height='135px';
		document.getElementById('belownav').style.width='565px';
		document.getElementById('flashOverHP').style.height='135px';  
		document.getElementById('flashOverHP').style.width='783px';		
	}                                               
}

function showBanner() {
	var changeInnerHTML = "";
	changeInnerHTML = '<div id="flashOverHP" style="z-index:1000;position:absolute;width:783px;height:513px;overflow:hidden;">'
	changeInnerHTML = changeInnerHTML + '<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=";http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" WIDTH="783" HEIGHT="513" id="movie"><PARAM NAME="movie" VALUE="http://www.planetabp.com/bp_ultimateexperience/100608_overlay_783x513.swf"><PARAM NAME="quality" VALUE="high"><param name="allowScriptAccess" value="always" /><PARAM NAME="wmode" VALUE="transparent"><EMBED src="http://www.planetabp.com/bp_ultimateexperience/100608_overlay_783x513.swf" quality="high" WIDTH="783" HEIGHT="513" NAME="movie" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" allowScriptAccess="always" wmode="transparent"></EMBED></OBJECT></div>';
	changeInnerHTML = changeInnerHTML + '<div id="theFlash" z-index:20; style="visibility:hidden;width:545px;height:135px;position:absolute;">';
	changeInnerHTML = changeInnerHTML + '<object id="movie" name="movie" type="application/x-shockwave-flash" data="http://www.planetabp.com/bp_ultimateexperience/100608_banner_545x135.swf" width="545" height="135" style="margin-left:19px; margin-top:1px">';
	changeInnerHTML = changeInnerHTML + '<param name="movie" value="http://www.planetabp.com/bp_ultimateexperience/100608_banner_545x135.swf" /><param name="allowScriptAccess" value="always" /></object></div>';  
	
	var objTarget = document.getElementById('belownav');
	objTarget.style.position='absolute';
	objTarget.style.width='783px';
	objTarget.style.height='135px';
	objTarget.innerHTML = changeInnerHTML;

	/* This is temporary -- actual time will be from Tommy's flash last frame script */
	//setTimeout('makeVisible()', 40000);	
}

function checkBrowser() {  // deze functie is niet meer nodig
    var browser = navigator.appName;
    var version = navigator.appVersion;
	alert(browser + "-->" + version)	
    if ( browser == "Microsoft Internet Explorer" ) {
		var versionIE = version.substring(22,25);
alert(versionIE)
		if ( versionIE != "6.0") {
			showBanner();
	    }		
    } else {
		showBanner();
	}	
}

showBanner();


