// JavaScript Document
<!-- Begin
window.defaultStatus = "Restaurant Aux Saveurs d'Alice - Enghien Les Bains";
//window.defaultStatus = "aW:"+screen.availWidth+" aH:"+screen.availHeight;
// ===========================================================================
// affiche les div
// ===========================================================================
function show()
{	
	document.getElementById('div2').style.visibility="visible";
	document.getElementById('div1').style.visibility="hidden";
}
// ===========================================================================
// agrandir la fenetre au maximum  et centrer verticalement
// ===========================================================================
function maxiWin() {
    window.moveTo (0, 0);
    resizeTo(screen.availWidth,screen.availHeight);
}

// ===========================================================================
// centrer verticalement et horizontalement la fenetre
// ===========================================================================
/*
	myWindowHeight = 600;
	myWindowWidth = 900;

	div1Top = (screen.availHeight - myWindowHeight) / 2;
	div1Left = (screen.availWidth - myWindowWidth) / 2;

	document.writeln('<style type="text/css">');
	document.writeln('#div1 { ');
	document.writeln(' position:absolute; top:'+div1Top+'px; left:'+div1Left+'px; z-index:1; visibility:hidden; ');
	document.writeln(' } ');
	document.writeln("</style>");
*/


// End -->


