function OuvrirFenetre(titre, source, largeur, hauteur)
{
	var fenetreDetail = open(source, titre, "toolbar=no, location=no, scrollbars=no, resizable=no, width=" + largeur + ", height=" + hauteur);
}

function ChangerMenuMouseOver(nomSection)
{
	var imageSrc = "images/menus/" + nomSection + "menumouseover.jpg";
	if (nomSection == "biographie")
		document.biographie.src = imageSrc;
	else 
		{
			if (nomSection == "bronzes")
				document.bronzes.src = imageSrc;
			else
			{
				if (nomSection == "portraits")
					document.portraits.src = imageSrc;
				else
				{
					if (nomSection == "monuments")
						document.monuments.src = imageSrc;
					else
					{
						if (nomSection == "contact")
							document.contact.src = imageSrc;
						else
						{
							if (nomSection == "galerie")
								document.galerie.src = imageSrc;
							else
							{
								if (nomSection == "collection")
									document.collection.src = imageSrc;
								else
									document.homepage.src = imageSrc;
							}
						}
					}
				}
			}
		}
	return;
}
function ChangerMenuMouseOut(nomSection)
{
	var imageSrc = "images/menus/" + nomSection + "menu.jpg";
	
	if (nomSection == "biographie")
		document.biographie.src = imageSrc;
	else 
		{
			if (nomSection == "bronzes")
				document.bronzes.src = imageSrc;
			else
			{
				if (nomSection == "portraits")
					document.portraits.src = imageSrc;
				else
				{
					if (nomSection == "monuments")
						document.monuments.src = imageSrc;
					else
					{
						if (nomSection == "contact")
							document.contact.src = imageSrc;
						else
						{
							if (nomSection == "galerie")
								document.galerie.src = imageSrc;
							else
							{
								if (nomSection == "collection")
									document.collection.src = imageSrc;
								else
									document.homepage.src = imageSrc;
							}
						}
					}
				}
			}
		}
	return;
}