var page  = (document.location.href.indexOf("product-sheet") === -1) ? "brands" : "product-sheet"; 


var brandFlash = document.getElementById("brandFlash");
if (brandFlash == null) {
	document.write('<div id="brandFlash" style="display:none;width:950px;height:570px;position:absolute;top:0px;left:0px;"></div>');
}

var uriCourant = document.location.pathname;
var indiceDepart = uriCourant.lastIndexOf('/'); 
var indiceArrivee = uriCourant.indexOf('_ca')+4;
var nomPage = uriCourant.substring(indiceDepart, indiceArrivee);


var lng = (document.location.href.indexOf("femmes") === -1) ? "en" : "fr"; 
var lngFolder = (document.location.href.indexOf("_fr/") === -1) ? "EN" : "FR";



var logo = document.getElementById("logo");
if (logo) {
	document.getElementById("logo").style.display="none"; 
}

  
// Function call from Introduction Video	
closeVideo = function(){
	document.getElementById("brandFlash").style.display = "none";
	playEverpure();			
			
} 

// Function Call from the PUSH button on the HOME PAGE of Everpure 
playEverpure = function(){
	LOP.addSWF({
		'url': '/flash/everpure/masterLoader.swf',
		'id': 'brandFlashSWF',
		'width': 950,
		'height': 570,
		'background': '#FFFFFF',
		'variables': {
			'xmlpath': '/flash/everpure/xml/EverPureData_'+ lng +'.xml',
			'swfPath': '/flash/everpure/master.swf',
			'cultureID' : lng 
		},
		'params': {
			'wmode' : 'opaque'
		},
		'target': 'brandFlash'
	});	 
	document.getElementById("brandFlash").style.display = "block";	 					
}    

// Function Call from the PUSH button on the EXPERT ADVICE TAB of Everpure 
playExpertEverpure = function(){
	LOP.addSWF({
		'url': '/flash/everpure/masterLoader.swf',
		'id': 'brandFlashSWF',
		'width': 950,
		'height': 570,
		'background': '#FFFFFF',
		'variables': {	
			'xmlpath': '/flash/everpure/xml/EverPureData_'+ lng +'.xml',
			'swfPath': '/flash/everpure/master.swf',
			'cultureID' : lng,
			'expertAdvice' : 'true' 
		},
		'params': {
			'wmode' : 'opaque'
		},
		'target': 'brandFlash'
	});	 
	document.getElementById("brandFlash").style.display = "block";
	if (nomPage == "beauty-filter" ) {	
		document.getElementById("core").style.height="493px";				
		document.getElementById("medias").style.display = "none";	
		document.getElementById("intro").style.display = "none";	
		
	} 	
	if (nomPage == "products" ) {	
		document.getElementById("core").style.height="460px";
		document.getElementById("metas").style.display = "none";		
	} 		
	if (nomPage == "diag" ) {	
		document.getElementById("contextual").style.display = "none";	
	} 								
}    

// Function Call from crossFadeBT.swf 
backToProductSheet = function(){
	document.getElementById("brandFlash").style.display = "none";
	document.getElementById("core").style.height="";
	if (nomPage == "products") {	
		document.getElementById("metas").style.display = "block";
	}	
	if (nomPage == "beauty-filter") {	
		document.getElementById("medias").style.display = "block";	
		document.getElementById("intro").style.display = "block";			
	}	
	if (nomPage == "diag") {	
		document.getElementById("contextual").style.display = "block";		
	}		
		 					
}   



