var apartados=new Array("filosofia","lacarta","catering","reservas","horario","mapa")

function menuSelect(selected){
	index = selected.charCodeAt(0)-65
	var url = apartados[index]+".htm"
	window.location=url
}

function insertMenu(current){
	var so = new SWFObject("flash/menu.swf", "mymovie", "170", "160", "7", "#000000");
	so.addParam("wmode", "transparent");
	so.addVariable("current", current);
	so.write("menu");	
}


function foto(f,w,h){
	file = f
	popwin = window.open('','','width='+w+',height='+h+'menubar=no,location=no,resizable=yes,scrollbars=yes,status=no');
	popwin.focus();
	popwin.document.write("<body leftmargin='0' topmargin='0' bgcolor='#000000'>");
	popwin.document.write("<img src=\""+file+"\">");
	popwin.document.write('<TITLE>.................................................................................................................</TITLE>');
}

function setHeights(){
	document.getElementById('plant').style.display = "none";
	var winH = document.documentElement.offsetHeight;
	var scrH = document.documentElement.scrollHeight;
	if (scrH > winH){
		var newY = scrH - 400
	} else {
		var newY = winH - 400
	}	
	document.getElementById('plant').style.marginTop = newY+"px";
	document.getElementById('plant').style.display = "block";
}


function aviso(){
	var dimensions = "width=520, height=440"
	popwin = window.open('avisoLegal.php','',dimensions+',menubar=no,location=no,resizable=no,scrollbars=no,status=no');
	popwin.focus();
}

function privacidad(){
	var dimensions = "width=520, height=490"
	popwin = window.open('privacidad.php','',dimensions+',menubar=no,location=no,resizable=no,scrollbars=no,status=no');
	popwin.focus();
}

function showMain(){
	document.getElementById('MAIN').style.display = "block";
}