function open_menu(menu_id,img)
{
	for(var x = 1 ; x <= 8 ; x++)
	{
		document.getElementById('l'+x).style.display = "none";
		document.getElementById('i'+x).src = "theme/GameFrancev3.1/design/navigation/menu" + x + "off.png";
	}
	
	img.src = "theme/GameFrancev3.1/design/navigation/menu" + menu_id + "on.png";
	document.getElementById('l'+menu_id).style.display = "block";
}

function toggleDiv(idDiv)
{
	if(document.getElementById(idDiv).style.display != "block") document.getElementById(idDiv).style.display = "block";
	else document.getElementById(idDiv).style.display = "none";
}

function showNews(iframe)
{
	var url = iframe.contentDocument.URL;
	if(url.substring(url.length-4,url.length) != ".php")
	{
		var query = url.substring(url.indexOf("?"),url.length)
		window.location.href = query + "#main";
	}
}

function notfirefox()
{
	var res = confirm("/!\ Attention /!\\ \nLe site de Game-France est optimisé pour Mozilla Firefox !\nPour continuer a naviguer sur le site, cliquez sur 'Annuler', sinon, vous serez redirigé vers une page proposant le téléchargement de Mozilla Firefox.");
	if(res) location.href = "http://getfirefox.com";
}