var panorama = {
	setPanoramaImage: function(image) {
		document.location.href = [document.location.href, '&fileName=', image].join('');
	},
	openPanoramaViewer: function(id, region) {
		if (id.indexOf('_')>-1) {
			var temp = id.split('_');
			id = temp[0];
			region = temp[1];
		}
		var panorama = window.open(['http://www.hotels-in-tirol.at/panorama/index.php?id=', id, '&region=', region].join(''), '', 'width=600,height=600');
		panorama.focus();
		return false;
	}
};