/*
// Author : Boris Meyer
// Date   : 2004-08-02
*/

//
// Ouverture de fenêtre
function openWindow(url, name) {
	window.open(url, name, 'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=760,height=420');
}

// Modification de l'affichage d'un élément.
function toggle(objectId){
	var obj = document.getElementById(objectId);
	if(obj.style.display != 'table-cell'){
	    obj.style.display = 'table-cell';
	}else{
	    obj.style.display = 'none';
	}
}

//
// CHangement d'url
function load(url){
	window.location = url;
}