
// affiche l'image dans la popup
function viewImage(img, titre) 
{
	w = open("",'image','width=130,height=130,toolbar=no,scrollbars=no,resizable=yes');	
	w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE></HEAD>");
	w.document.write("<SCRIPT language=javascript>function checksize()  { if (document.images[0].complete) {  window.resizeTo(document.images[0].width+10,document.images[0].height+50); window.focus();} else { setTimeout('check()',250) } }</"+"SCRIPT>");
	w.document.write("<BODY onload='checksize()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0><IMG src='"+img+"' border=0>");
	w.document.write("");
	w.document.write("</BODY></HTML>");
	w.document.close();
}

// affiche/cache les blocks
function displayChange(bid, oid) {
	var block = document.getElementById(bid);
	var onglet = document.getElementById(oid);
	
	for (var i = 1; i<=10; i++)
	{
		if (document.getElementById('e_'+i)) 
		{
			document.getElementById('e_'+i).style.display = 'none';
			document.getElementById('m_'+i).style.backgroundColor = '#FFF';
		}
	}
	if (block) 
	{
		block.style.display = '';
		onglet.style.backgroundColor = '#0C0';
	}
}

// affiche le menu
function showMenu(id) 
{
	var d = document.getElementById(id);
	
	for (var i = 1; i<=10; i++)
	{
		if (document.getElementById('smenu'+i)) 
		{
			document.getElementById('smenu'+i).style.display = 'none';
		}
	}
	if (d) 
	{
		d.style.display = 'block';
	}
}