// JavaScript Document
function displayAd(ad){
	var ad_area = document.getElementById('ad');
	//var film_title = document.getElementById('right_film_title');
	if (ad == 'film') {
		//film_title.style.display='block';
		
		ad_area.style.marginLeft='40px';
		if(navigator.appVersion.match("MSIE 6.0") )
			ad_area.style.marginLeft='25px';
		ad_area.style.marginTop='30px';
		ad_area.style.marginBottom='30px';
		ad_area.style.width='340px';
		ad_area.style.height='291px';
		ad_area.style.backgroundImage="none";
		//var fo = new FlashObject( "/common/flash/areva_en.swf", "locationsMap", 340, 291, "8,0,0,0", "#d1ccbd" );
		//fo.write( "ad" );
		var html = '<object ID="MediaPlayer" WIDTH="340" HEIGHT="291" CLASSID="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" STANDBY="Loading Windows Media Player components..." TYPE="application/x-oleobject"><param NAME="FileName" VALUE="/common/wmv/Areva.wmv"><param name="autostart" VALUE="true"><param name="ShowControls" VALUE="true"><param name="ShowStatusBar" value="false"><param name="ShowDisplay" VALUE="false"><embed TYPE="application/x-mplayer2" SRC="/common/wmv/Areva.wmv" NAME="MediaPlayer"WIDTH="340" HEIGHT="291" ShowControls="1" ShowStatusBar="0" ShowDisplay="0" autostart="1"> </embed></object>';
		ad_area.innerHTML=html;
		setTab(document.getElementById("button0"));
		//clearTab(document.getElementById("button1"));
		clearTab(document.getElementById("button2"));
		position = "bottom";
		
	}
	if (ad == "press") {
		//film_title.style.display='none';
		ad_area.style.backgroundImage="url(/common/images/ad_campaign/press_ad_large.gif)";
		ad_area.style.width='238px';
		ad_area.style.height='335px';
		ad_area.style.marginLeft='100px';
		if(navigator.appVersion.match("MSIE 6.0") )
			ad_area.style.marginLeft='55px';
		ad_area.style.marginTop='5px';
		ad_area.style.marginBottom='10px';
		ad_area.innerHTML='';
		setTab(document.getElementById("button1"));
		clearTab(document.getElementById("button0"));
		clearTab(document.getElementById("button2"));
		position = "bottom";
		}
	if (ad == "film2"){
		ad_area.style.width='422px';
		ad_area.style.height='330px';
		ad_area.style.marginLeft='6px';
		ad_area.style.marginTop='0px';
		ad_area.style.marginBottom='0px';
		ad_area.style.backgroundImage="none";
		
		
		ad_area.innerHTML='<iframe src="http://multimedia1.areva.com/areva_2005/clip_instit/flash8/areva_8.html" scrolling="no" border="0" style="border:none; width:422px; height:330px;"></iframe>';
		setTab(document.getElementById("button2"));
		clearTab(document.getElementById("button0"));
		clearTab(document.getElementById("button1"));
		position = "bottom";
		
	}
		
		//ad_area.innerHTML='<div id="large_text" style="visibility:hidden;">This is where the enlarged text is going to go.</div><div id="enlarge_text"><a href="#" onmouseout="displayAd(\'text_hide\');" onmouseover="displayAd(\'text_show\');"></a></div>';	
	
	if (ad == "text_show"){
		document.getElementById("large_text").style.visibility="visible";
	}
	if (ad == "text_hide"){
		document.getElementById("large_text").style.visibility="hidden";
	}
}
