/***************************************************************************/
// Gestion de l'affichage des menus dynamiques
/***************************************************************************/

function montre(id) 
{
	if (document.getElementById) document.getElementById(id).style.display="block";
	else if (document.all) document.all[id].style.display="block";
	else if (document.layers) document.layers[id].display="block";
}
		
function cache(id) 
{
	if (document.getElementById) document.getElementById(id).style.display="none";
	else if (document.all) document.all[id].style.display="none";
	else if (document.layers) document.layers[id].display="none";
}



/***************************************************************************/
// Gestion de l'affichage des references en lightbox
/***************************************************************************/

function ClosePopOutput(){
	document.getElementById('outputBackground').style.display='none';
	document.getElementById('output').style.display='none';
}

	
function PopOutput(src, witdh, height) {
	
	div_width = witdh;
	div_height = height;
		
	div_x = Math.round((screen.width / 2) - (div_width / 2));
	div_y = Math.round((screen.height / 2) - (div_height / 2) - 100);

	document.getElementById('fiche').innerHTML = '<div id="outputBackground" style="background:#000000; -moz-opacity:0.5; opacity: 0.5; filter:alpha(opacity=50); width:'+document.body.scrollWidth+'px; height:'+document.body.scrollHeight+'px; position:absolute; top:0px; left:0px; z-index:100"  OnClick="document.getElementById(\'outputBackground\').style.display=\'none\';document.getElementById(\'output\').style.display=\'none\';"></div>';
	document.getElementById('fiche').innerHTML += '<div id="output" style="width:'+div_width+'px; height:'+div_height+'px; position:absolute; left:'+div_x+'px; top:'+div_y+'px;  z-index:101;"><a href="javascript:ClosePopOutput();"><img src="images/references/reference_13.gif" alt="Fermer" width="60" height="22" border="0" style="float:right; margin-bottom:5px;"/></a><iframe width="'+div_width+'" height="'+div_height+'" src="'+src+'" scrolling="no" frameborder="0"></iframe></div>';
}



/***************************************************************************/
// Gestion de l'affichage des film flashs en lightbox
/***************************************************************************/

function CloseFlashPopOutput(){
	document.getElementById('filmflash').innerHTML = '';	
	document.getElementById('outputBackground').style.display='none';
	document.getElementById('output').style.display='none';
	
}
	
function PopFlashOutput(src, witdh, height) {
	
	div_width = witdh;
	div_height = height;
		
	div_x = Math.round((screen.width / 2) - (div_width / 2));
	div_y = Math.round((screen.height / 2) - (div_height / 2) - 50);

	document.getElementById('filmflash').innerHTML = '<div id="outputBackground" style="background:#000000; -moz-opacity:0.5; opacity: 0.5; filter:alpha(opacity=50); width:'+document.body.scrollWidth+'px; height:'+document.body.scrollHeight+'px; position:absolute; top:0px; left:0px; z-index:100"  OnClick="document.getElementById(\'outputBackground\').style.display=\'none\';document.getElementById(\'output\').style.display=\'none\';"></div>';
	document.getElementById('filmflash').innerHTML += '<div id="output" style="width:'+div_width+'px; height:'+div_height+'px; position:absolute; left:'+div_x+'px; top:'+div_y+'px;  z-index:101;"><iframe width="'+div_width+'" height="'+div_height+'" src="'+src+'" scrolling="no" frameborder="0"></iframe></div>';
}



/***************************************************************************/
// Gestion de l'affichage des photos des références
/***************************************************************************/

function displayPhoto(src, scale) {
	
	document.getElementById('photo').innerHTML = '<img src="'+src+'" '+scale+' />';
}