
	function page_print( ids, lng ) {
		if( lng == null ) lng = 'de';
		var url_print = '/'+lng+'/druckansicht/';
		var options = location.href.substr( location.href.lastIndexOf( '/' ) + 1 );
		var url = url_print+'print-content-ids='+ids+'&print-option-string='+encodeURI(options);
		location.href = url;
		return false;
	}

/*Hoteltour*/
	function hide_tables() {
		var tables = document.getElementsByTagName("TABLE");
		for (var i = 0; i < tables.length; i++) {
			if (tables[i].className == "cat") {
				tables[i].style.display ="none";
			}
		}
	}
	
	function show_category(which) {
		var tables = document.getElementsByTagName("TABLE");
		for (var i = 0; i < tables.length; i++) {
			if (tables[i].className == "cat") {
				tables[i].style.display ="none";
			}
		}
		
		cat = document.getElementById(which);
		cat.style.display = "block";
		return false;
	}
	
	function FensterOeffnen (Adresse) {
	  	var Fenster1 = window.open(Adresse, "Wellnessresort Engel Dolomiten", "width=900,height=700,menubar=no,resizable=yes");
	  	Fenster1.focus();
	}
