//--------POPUP------------------------------------------------

function ouvrir_pop(link)
{ 

if((!FenetreOuverte) || (FenetreOuverte.closed == true))
	{
	var FenetreOuverte=window.open(link, 'pop', 'width=550, height=600, left=20, top=20, status=0, resizable=1, menubar=0, titlebar=0, toolbar=0, location=0, scrollbars=1, dependent=1'); 
	FenetreOuverte.focus();
	}
	else
	{
	FenetreOuverte.location.href = link;
	FenetreOuverte.focus();
	}
}

function ouvrir_anim(link)
{ 

if((!FenetreOuverte) || (FenetreOuverte.closed == true))
	{
	var FenetreOuverte=window.open(link, 'anim', 'width=570, height=380, left=20, top=20, status=0, resizable=0, menubar=0, titlebar=0, toolbar=0, location=0, scrollbars=0, dependent=1'); 
	FenetreOuverte.focus();
	}
	else
	{
	FenetreOuverte.location.href = link;
	FenetreOuverte.focus();
	}
}
