// ouverture de popup
function popupCentre(page,largeur,hauteur,options) {
var top = (screen.height-hauteur)/2;
var left = (screen.width-largeur)/2;
window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}

 function cache(id) 
{
    if (document.getElementById) {document.getElementById(id).style.display = 'none';
	} 
	else if (document.all) 
	{
  		document.all[id].style.display = 'none';
	} 
	else if (document.layers) 
	{
  		document.layers[id].visibility="hidden";
	}
} 

function cacheTout() {
	cache('texteMeteo');
	cache('texteTrafic');
	cache('texteAir');
	cache('texteMarche');
	cache('default');
}

function montreSeul(id) 
{
  	cacheTout();
  	if (document.getElementById) 
	{
  		document.getElementById(id).style.display = 'block';
	} 
	else if (document.all) 
	{
  		document.all[id].style.display = 'block';
	} 
	else if (document.layers) 
	{
  		document.layers[id].visibility="visible";
	}
} 

//-->