function ongletPointe(objet)
{
	if(objet.className!='ongletCoche')
	{
		objet.className='ongletPointe';
	}
	
}

function ongletDepointe(objet)
{
	if(objet.className!='ongletCoche')
	{
		objet.className='ongletNeutre';
	}
}

function ongletCoche(objet)
{
	if(objet!=null)
	{
		for(i=1;i<=6;i++)
		{
			document.getElementById('onglet'+i).className='ongletNeutre';
		}
		objet.className='ongletCoche';
	}
}

function actualiserOnglet()
{
	var numero = frames['centre'].document.body.id;
	ongletCoche( document.getElementById('onglet'+numero) );
}

function checkIframe()
{
	if(window.parent.document.body.id != 'index')
	{
		window.location='../index.html';
	}
}

function rondPointe(langue)
{
	document.getElementById('rondLangue').src='images/'+langue+'Pointe.jpg';
}

function rondDepointe(langue)
{
	document.getElementById('rondLangue').src='images/'+langue+'.jpg';
}

function zoom(image,adresse)
{
	image.src='../images/'+adresse;
}
