function hide(){         
	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 destroyFlashContainer() {
	hide();
}

function makeVisible() {
	hide();
}

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/overlay/bp/overlay.swf"><PARAM NAME="quality" VALUE="high"><param name="allowScriptAccess" value="always" /><PARAM NAME="wmode" VALUE="transparent"><EMBED src="http://www.planetabp.com/overlay/bp/overlay.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;paddin-left:2px;">';
	changeInnerHTML = changeInnerHTML + '<object id="movie" name="movie" type="application/x-shockwave-flash" data="http://www.planetabp.com/overlay/bp/banner.swf" width="545" height="135" style="margin-left:19px; margin-top:1px">';
	changeInnerHTML = changeInnerHTML + '<param name="movie" value="http://www.planetabp.com/overlay/bp/banner.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;
}

showBanner();

