
/*************************/
/*** ROLL TITRE ONGLET ***/
/*************************/
function rollTitreOngletOver(el){
	
}

function rollTitreOngletOut(el){
	
}

function showPopin(idpopin,video_url){
	var el = document.getElementById(idpopin);
	var popinbkg = document.getElementById('popinbkg');
	if(el && popinbkg){
		el.className = 'popin';
		popinbkg.className='popinbkg';
		updatePopinBkgDim();
		$("#popin_ajaxcontent").load("../popin.php?v="+video_url);
		if (navigator.platform == "Win32" && navigator.appName == "Microsoft Internet Explorer" && window.attachEvent) fnLoadPngs();
	}
}

function hidePopin(idpopin){
	var el = document.getElementById(idpopin);
	var popinbkg = document.getElementById('popinbkg');
	if(el && popinbkg){
		$("#popin_ajaxcontent").load('../empty.html');
		el.className = 'invisible';
		popinbkg.className='invisible';
	}
}

function updatePopinBkgDim(){
	var popinbkg = document.getElementById('popinbkg');
	if(popinbkg){
		if(popinbkg.className=='popinbkg'){
			popinbkg.style.height = getHeightAll()+'px';
			popinbkg.style.width = getWidthAll()+'px';
		}
	}
}
	
function getWidthAll(){
	return Math.max(document.body.offsetWidth,1008);
}
function getHeightAll(){
	return document.body.offsetHeight;
}
