function OuvrePopUp(Url,Title,Param,Width,Heigth)
{
	if (Param == "")
        	Param = "width=" + Width + ",height=" + Heigth;
        else
                Param += ",width=" + Width + ",height=" + Heigth;
	var w = window.open(Url,Title,Param);
}

function OuvrePopUpImprime(Url,Title,Param,Width,Heigth)
{
	if (Param == "")
        	Param = "width=" + Width + ",height=" + Heigth;
        else
                Param += ",width=" + Width + ",height=" + Heigth;
	var w = window.open(Url,Title,Param);
	return w;
}

function SubmitForm(TheForm)
{
 	window.document.forms[TheForm].submit();
}

function SubmitFormAndClose(TheForm)
{
 	window.document.forms[TheForm].submit();
	setTimeout("window.close()",500);
}

//Function which change the background color
function ChangeBackground(Object,Color)
{	
	    Object.style.background = Color;
}

//Afficher une boite au chargement de la page
function OuvrePop()
{
	var pop = document.getElementById('pop');
	if (pop) {pop.style.display = 'block';};
	if (pop) {pop.onclick = function() {this.style.display = 'none';};};
}

//Fermeture de la boite a partir appel de l anim flash
function popferme()
{
	var pop = document.getElementById('pop');
	if (pop) {pop.style.display = 'none';};
}

//Ouverture Page des credits voeux
function OuvreCredit() {
window.open('http://www.oph-montpellier-agglo.fr/700_Mediatheque/200_Fichiers/Voeux_2007/pop.html','pop','width=615,height=170,scrollbars=0')
}
