// Java Document
function showMenu(id){document.getElementById(id).style.display="block"}
function hideMenu(id){document.getElementById(id).style.display="none"}
function Act(element){element.style.backgroundColor='6D0807'}
function inAct(element){element.style.backgroundColor='540E10'}
function change_lang(name,value)
{	var today=new Date(); expires=new Date(today.getTime() + 1*24*60*60*1000);
	document.cookie=name+"="+escape(value)+";expires="+expires.toGMTString()+";path=/";
	self.location.replace('/')
}

function newWin(url,name){
var width=857;
var height=550;
var left=0;
var top=0;
var options="toolbar=0,location=0,directories=0,status=0,scrollbars=1,resizable=1,menubar=0,width="+width+",";

if (self.screen) {
	var scwidth = screen.width;
	var scheight= screen.height-30
	}
	else if (self.java){
	var jkit = java.awt.Toolkit.getDefaultToolkit();
	var scrsize = jkit.getScreenSize();       
    var scwidth = scrsize.width;
	var scheight= scrsize.height-30
	}
if (height > scheight){
	height=scheight
	}
left=Math.round((scwidth-width)/2)-15;
top=Math.round((scheight-height)/2)-18;
options=options+"height="+height+",left="+left+",top="+top;
tickets=window.open(url,name,options)
}
function hotelWin(url,name){
var width=400;
var height=500;
var left=0;
var top=0;
var options="toolbar=0,location=0,directories=0,status=0,scrollbars=1,resizable=1,menubar=0,width="+width+",";

if (self.screen) {
	var scwidth = screen.width;
	var scheight= screen.height-30
	}
	else if (self.java){
	var jkit = java.awt.Toolkit.getDefaultToolkit();
	var scrsize = jkit.getScreenSize();       
    var scwidth = scrsize.width;
	var scheight= scrsize.height-30
	}
if (height > scheight){
	height=scheight
	}
left=Math.round((scwidth-width)/2+190);
top=Math.round((scheight-height)/2-32);
options=options+"height="+height+",left="+left+",top="+top;
tickets=window.open(url,name,options)
}