function OuvrirPage(page)
{
	window.location="index.php?page="+page;
}

function ouvre_popup1(page) {
	window.open(page,"mentions","menubar=no, status=no, scrollbars=no, directories=no, location=no, menubar=no, resizable=no, width=500, height=600, left=0, top=0"); 
}

function ouvrir(w,h,s,url) { 
hauteur=Math.round((screen.availHeight-h)/2);
largeur=Math.round((screen.availWidth-w)/2);
pop=window.open(url, "site", "toolbar=0,location=0,directories=0,status=0, scrollbars="+s+",resizable=0,menubar=0,top="+hauteur+",left="+largeur+",width="+w+",height="+h);
pop.focus();
}

// affiche la bubble
function see_bubble(text){
	bubble = document.getElementById("infobulle");
	bubble.style.visibility = "visible";
    bubble.style.display = "block";
    document.all["infobulle"].innerHTML = text;
}



// cache la bubble
function kill_bubble(){
	bubble = document.getElementById("infobulle");
	bubble.style.visibility = "hidden";
    bubble.style.display = "none";
}

//Changement d'onglet
function changeRecherche(adresse)
{
	submitCentral();
	document.centralform.recherche.value=adresse;
	document.centralform.submit();
}

//Changement d'onglet
function changeAccueil(adresse)
{
	submitCentral();
	document.centralform.central.value=adresse;
	document.centralform.submit();
}

function changePagination(adresse, page,num_page)
{
	document.centralform.page.value=page;
	document.centralform.central.value=adresse;
	document.centralform.num_page.value=num_page;
	document.centralform.submit();
}

function administre(choix, num_page)
{
submitCentral();
if (choix=='1')
{
	document.centralform.outilsadmin.value=1;
	document.centralform.central.value="gestion_utilisateur/admin_utilisateur";
	document.centralform.num_page.value=num_page;
	document.centralform.page.value='liste';
}else{
	document.centralform.outilsadmin.value=0;
	document.centralform.central.value="accueil";
}
document.centralform.submit();
}

function openPopup(url)
{
	popupdetail=window.open(url,'popupAide','toolbar=0, location=0,resizable=1,scrollbars=1, menuBar=0,minimizable=0 width=900,height=600');
	popupdetail.focus();
}


