function pop(file)	{
booking = window.open(file,"booking","toolbar=no, location=no, directories=no, status=no, menubar=no, resizebale=no, width=600, height=400");
booking.focus();
return false;
}

function anreise(s)	{
	open(s,"_blank",'toolbar=0,location=0,directories=0,status=0,menubar=0,width=450,height=275,scrollbars=0,resizable=0')
}
function popup1(){
	
	var h;
	var b;
	
	if(window.innerHeight!=null){
		
		h = window.innerHeight;
		b = window.innerWidth;
	}		
	if(document.documentElement.clientHeight!=null){
		
		h = document.documentElement.clientHeight;
		b = document.documentElement.clientWidth;
	}
	if(document.body.clientHeight!=null){
		
		h = document.body.clientHeight;
		b = document.body.clientWidth;
	}
	
	h = h/2-200;
	b = b/2-300;
	
	document.getElementById('tigpopup').style.top= h+"px";
	document.getElementById('tigpopup').style.left= b+"px";
	document.getElementById('blacklayer').style.display='block';
	document.getElementById('tigpopup').style.display='block';
}
function popup2(){
	
	var h;
	var b;
	
	if(window.innerHeight!=null){
		
		h = window.innerHeight;
		b = window.innerWidth;
	}		
	if(document.documentElement.clientHeight!=null){
		
		h = document.documentElement.clientHeight;
		b = document.documentElement.clientWidth;
	}
	if(document.body.clientHeight!=null){
		
		h = document.body.clientHeight;
		b = document.body.clientWidth;
	}
	
	h = h/2-263;
	b = b/2-300;
	
	document.getElementById('galerie').style.top= h+"px";
	document.getElementById('galerie').style.left= b+"px";
	document.getElementById('blacklayer').style.display='block';
	document.getElementById('galerie').style.display='block';
}
function setimage(bild){
	
	document.getElementById('galeriebild').style.backgroundImage="url(images/" +bild+ ")";
}