/**********/
/***** OPACITE *****/
/**********/
function makevisible(cur,which)
	{
	if(document.getElementById)
		{
		if (which==1)
			{
			if(document.all)
				cur.filters.alpha.opacity=100
			else
				cur.style.setProperty("-moz-opacity", 1, "");
			}
		else
			{
			if(document.all)
				cur.filters.alpha.opacity=50
			else
				cur.style.setProperty("-moz-opacity", .5, "");
			}
		}
	}
/**********/
/***** FAVORIS *****/
/**********/
<!--

function AjoutFavo() {
	if ((navigator.appName.indexOf("Microsoft",0)>=0) && (parseInt(navigator.appVersion)>=4)) {
		window.external.AddFavorite("http://www.restaurantdiroma.fr","Restaurant Di Roma" );
	} else {
		alert("Faites CTRL+D si vous utilisez Mozilla (ou Cmd+D sous Mac OS X).")
	}
}

// -->
/**********/
/***** BARRE DE STATUT *****/
/**********/
{
window.defaultStatus='Restaurant Di Roma';
}
/**********/
/***** POPUP CENTREE *****/
/**********/
function fenetreCent(url,nom,largeur,hauteur,options) 
{
var haut=(screen.height-hauteur)/2;
var Gauche=(screen.width-largeur)/2;
fencent=window.open(url,nom,"top="+haut+",left="+Gauche+",width="+largeur+",height="+hauteur+","+options);
}