﻿<?xml version="1.0" encoding="UTF-8"?>

<krpano debugmode="true" onstart="loadscene(scene_outdoor, null, MERGE, BLEND(0.5)); js(updateFloatingInfoLayerTitle(get(scene[scene_outdoor].title))); set(current_scene_index, get(scene[scene_outdoor].index));">
	
	<include url="skin/defaultskin.xml"/>
	<view fovmin="60" fovmax="90"/>
	
	<data name="video_html_template"><![CDATA[
		<div style="width:100%; height:100%; overflow:hidden; display:flex; justify-content:center; align-items:center;
		            background-image: url('poster.jpg'); background-size: contain; background-repeat: no-repeat; background-position: center;">
			<video autoplay loop muted playsinline webkit-playsinline x5-playsinline x5-video-player-type="h5"
			       style="width:100%; height:100%; object-fit:contain;
			              -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 3%, black 97%, transparent 100%);
			              -webkit-mask-composite: source-in;
			              mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 3%, black 97%, transparent 100%);
			              mask-composite: intersect;"
			       onplay="this.parentElement.style.backgroundImage='none'">
				<source src="sharp.mp4" type="video/mp4">
			</video>
		</div>
	]]></data>

	<data name="video_html_template2"><![CDATA[
		<div style="width:100%; height:100%; overflow:hidden; display:flex; justify-content:center; align-items:center;
		            background-image: url('poster2.jpg'); background-size: contain; background-repeat: no-repeat; background-position: center;">
			<video autoplay loop muted playsinline webkit-playsinline x5-playsinline x5-video-player-type="h5"
			       style="width:100%; height:100%; object-fit:contain;
			              -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 3%, black 97%, transparent 100%);
			              -webkit-mask-composite: source-in;
			              mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 3%, black 97%, transparent 100%);
			              mask-composite: intersect;"
			       onplay="this.parentElement.style.backgroundImage='none'">
				<source src="sharp.mp4" type="video/mp4">
			</video>
		</div>
	]]></data>

	<data name="video_html_hotel"><![CDATA[
		<div style="width:100%; height:100%; overflow:hidden; display:flex; justify-content:center; align-items:center;
		            background-image: url('poster_hotel.jpg'); background-size: contain; background-repeat: no-repeat; background-position: center;">
			<video autoplay loop muted playsinline webkit-playsinline x5-playsinline x5-video-player-type="h5"
			       style="width:100%; height:100%; object-fit:contain;
			              -webkit-mask-image: linear-gradient(to right, transparent 0%, black 1.5%, black 98.5%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 1.5%, black 98.5%, transparent 100%);
			              -webkit-mask-composite: source-in;
			              mask-image: linear-gradient(to right, transparent 0%, black 1.5%, black 98.5%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 1.5%, black 98.5%, transparent 100%);
			              mask-composite: intersect;"
			       onplay="this.parentElement.style.backgroundImage='none'">
				<source src="hotel_video.mp4" type="video/mp4">
			</video>
		</div>
	]]></data>
	
	<action name="do_zoom_transition">
		loadscene(%1, null, MERGE, BLEND(1.2, easeInOutSine));
		js(stop_slideshow_timer());
		js(updateFloatingInfoLayerTitle(get(scene[%1].title)));
		set(current_scene_index, get(scene[%1].index));
		js(krpanoSceneChanged('%1'));
	</action>

	<action name="hideinfotext">
		showtext(null, infotext);
	</action>

	<action name="show_tooltip">
		js(show_krpano_tooltip(get(name)));
	</action>
	
	<action name="hide_tooltip">
		js(hide_krpano_tooltip());
	</action>
	
	<action name="pulse_loop">
		tween(scale, 0.20, 1.5, easeInOutSine, pulse_loop_back());
	</action>

	<action name="pulse_loop_back">
		tween(scale, 0.30, 1.5, easeInOutSine, pulse_loop());
	</action>

	<action name="init_video_screen">
		if(hotspot[%1],
			copy(hotspot[%1].html, data[%2].content);
			set(hotspot[%1].mipmapping, false);
			set(hotspot[%1].magfilter, linear);
			set(hotspot[%1].minfilter, linear);
			tween(hotspot[%1].alpha, 1.0, 1.5, easeInOutQuad);
		);
	</action>

	<action name="load_outdoor_video_delayed">
		delayedcall(0.1, init_video_screen(video_screen_3d, video_html_template) );
		delayedcall(0.4, init_video_screen(video_screen_3d2, video_html_template2) );
	</action>

	<action name="load_hotel_video_delayed">
		delayedcall(0.1, init_video_screen(video_screen_3d, video_html_hotel) );
	</action>

	<style name="nav_hotspot_style" 
	       url="skin/Sharp-Plaza_UI_Arrow_L1.svg" 
	       scale="0.40" 
	       edge="center" 
	       onhover="show_tooltip(); stoptween(scale); tweento(scale, 0.5, 0.4, easeOutElastic);" 
	       onout="hide_tooltip(); pulse_loop();" 
	       onloaded="pulse_loop();"
	       zorder="20"/>
	       
	<style name="info_hotspot_style" 
	       url="skin/Sharp-Plaza_UI_Dot_L1.svg" 
	       scale="0.30" 
	       zoom="true"
	       edge="center" 
	       onhover="show_tooltip(); stoptween(scale); tweento(scale, 0.45, 0.2, easeOutElastic);" 
	       onout="hide_tooltip(); pulse_loop();" 
	       onloaded="pulse_loop();"
	       zorder="20"/>

	<style name="hotspot_text_stil" css="padding:10px; background-color:rgba(0,0,0,0.7); border-radius:5px; color:white;"/>

	<action name="start_slideshow">
		set(global.slideshow_running, true);
		js(start_slideshow_timer());
	</action>
	
	<action name="stop_slideshow">
		set(global.slideshow_running, false);
		js(stop_slideshow_timer());
	</action>
	
	<action name="next_scene">
		if(scene.count GT 0,
			set(current_scene_index, (current_scene_index + 1) % scene.count);
			set(next_scene_obj, get(scene[get(current_scene_index)])); 
			if(next_scene_obj != null,
				set(next_scene_name, get(next_scene_obj.name));
				set(next_scene_title, get(next_scene_obj.title));
				loadscene(get(next_scene_name), null, MERGE, BLEND(1.0, easeInOutSine, 1));
				js(updateFloatingInfoLayerTitle(get(next_scene_title)));
			,
				stop_slideshow();
			);
		,
			stop_slideshow();
		);
	</action>
	  
	<var name="global.slideshow_running" value="false" keep="true"/>
	<var name="current_scene_index" value="0" keep="true"/>

	<action name="handleHotspotClick">
		js(handleHotspotClick(get(hotspot.name)));
	</action>

	<hotspot name="floating_info_anchor" ath="10" atv="20" visible="true" keep="true" zorder="100" capture="false" handcursor="false" css="display:none;"/>
	<hotspot name="infotext" type="text" keep="true" css="text-align:center; color:#FFFFFF; font-family:Arial; font-weight:bold; font-size:20px;" background="false" autoheight="true" visible="false" enabled="false" mouse="false" blendmode="normal" edge="center" x="0" y="-50" zorder="200" ath="0" atv="0"/>


	<scene name="scene_architect_office" title="Bauträger Meeting">
		<image><sphere url="./spheres/Mono_S_ArchitectOffice.0003.jpg"/></image>
		<view hlookat="10" vlookat="0" fov="90" architectural="1.0" hlookatmin="0" hlookatmax="360" vlookatmin="0" vlookatmax="360" limitview="lookat"/>
		<hotspot name="bautraeger_lm551_info" style="info_hotspot_style" ath="-30" atv="00" onclick="js(handleHotspotClick(get(name)));" hovertext="LM551 | Ihre Pläne, gemeinsam sichtbar "/>
		<hotspot name="bautraeger_standfuss_info" style="info_hotspot_style" ath="-35" atv="010" onclick="js(handleHotspotClick(get(name)));" hovertext="Flexibler, motorisierter Standfuss für große Displays"/>
		<hotspot name="bautraeger_p721q_info" style="info_hotspot_style" ath="25" atv="-15" onclick="js(handleHotspotClick(get(name)));" hovertext="P721Q | Reibungslose Präsentationen ohne Verzögerung"/>
		<hotspot name="bautraeger_zum_office_nav" style="nav_hotspot_style" ath="-140" atv="40" onclick="do_zoom_transition(scene_architect_office_1);" hovertext="zum Office"/>
		<hotspot name="bautraeger_naeher_dran_nav" style="nav_hotspot_style" ath="-25" atv="30" onclick="do_zoom_transition(scene_architect_office_closer);" hovertext="Näher dran"/>
	</scene>

	<scene name="scene_architect_office_closer" title="Bauträger Meeting Näher">
		<image><sphere url="./spheres/Mono_S_ArchitectOffice.0002.jpg"/></image>
		<hotspot name="bautraeger_lm551_info" style="info_hotspot_style" ath="-20" atv="00" onclick="js(handleHotspotClick(get(name)));" hovertext="LM551 | Ihre Pläne, gemeinsam sichtbar "/>
		<hotspot name="bautraeger_standfuss_info" style="info_hotspot_style" ath="-25" atv="010" onclick="js(handleHotspotClick(get(name)));" hovertext="Flexibler, motorisierter Standfuss für große Displays"/>
		<hotspot name="bautraeger_p721q_info" style="info_hotspot_style" ath="95" atv="-30" onclick="js(handleHotspotClick(get(name)));" hovertext="P721Q | Reibungslose Präsentationen ohne Verzögerung"/>
		<hotspot name="bautraeger_zum_office_nav" style="nav_hotspot_style" ath="-160" atv="10" onclick="do_zoom_transition(scene_architect_office_1);" hovertext="zum Office"/>
	</scene>

	<scene name="scene_architect_office_0002_closer" title="Bauträger Arbeitsplatz">
		<image><sphere url="./spheres/Mono_S_ArchitectOffice.0007.jpg"/></image>
		<view hlookat="260" vlookat="0" fov="90" architectural="1.0" hlookatmin="0" hlookatmax="360" vlookatmin="0" vlookatmax="360" limitview="lookat"/>
		<hotspot name="bautraeger_pn_la862_info" style="info_hotspot_style" ath="-10" atv="0" onclick="js(handleHotspotClick(get(name)));" hovertext="PN-LA862 I High-End Collaboration für Bauprojekte"/>
		<hotspot name="bautraeger_standfuss2_info" style="info_hotspot_style" ath="-10" atv="10" onclick="js(handleHotspotClick(get(name)));" hovertext="Sharp PD02MHA-CB86 Motorisierter Standfuß"/>
		<hotspot name="bautraeger_bp56c26_info" style="info_hotspot_style" ath="280" atv="5" onclick="js(handleHotspotClick(get(name)));" hovertext="BP-56C26 | Ohne Rechner aus MS-Teams drucken – oder in Verzeichnisse scannen."/>
		<hotspot name="bautraeger_zurueck_office_nav" style="nav_hotspot_style" ath="120" atv="10" onclick="do_zoom_transition(scene_architect_office_1);" hovertext="Zurück zum Office"/>
	</scene>

	<scene name="scene_architect_office_1" title="Bauträger Arbeitspplatz">
		<image><sphere url="./spheres/Mono_S_ArchitectOffice.0005.jpg"/></image>
		<view hlookat="-80" vlookat="7" fov="90" architectural="1.0" hlookatmin="-155.0" hlookatmax="15.0" vlookatmin="-30" vlookatmax="30" limitview="lookat"/>
		<hotspot name="bautraeger_bp56c26_info" style="info_hotspot_style" ath="-95" atv="5" onclick="js(handleHotspotClick(get(name)));" hovertext="BP-56C26 | Ohne Rechner aus MS-Teams drucken – oder in Verzeichnisse scannen."/>
		<hotspot name="bautraeger_ea272u_info" style="info_hotspot_style" ath="-37" atv="15" onclick="js(handleHotspotClick(get(name)));" hovertext="EA272U | Effizientes arbeiten, Detail im Blick"/>
		<hotspot name="bautraeger_pn_la862_info" style="info_hotspot_style" ath="-70" atv="0" onclick="js(handleHotspotClick(get(name)));" hovertext="PN-LA862 I High-End Collaboration für Bauprojekte"/>
		<hotspot name="bautraeger_zu_arbeitsplaetzen2_nav" style="nav_hotspot_style" ath="-65" atv="5" onclick="do_zoom_transition(scene_architect_office_0002);" hovertext="zum Display"/>
		<hotspot name="bautraeger_zum_druckerraum_nav" style="nav_hotspot_style" ath="5" atv="10" onclick="do_zoom_transition(scene_architect_office_2);" hovertext="Zum Druckerraum"/>
		<hotspot name="bautraeger_naeher_mfp_nav" style="nav_hotspot_style" ath="-95" atv="15" onclick="do_zoom_transition(scene_architect_office_0002_closer);" hovertext="zum Drucker"/>
	</scene>

	<scene name="scene_architect_office_2" title="Bauträger Druckerraum">
		<image><sphere url="./spheres/Mono_S_ArchitectOffice.0004.jpg"/></image>
		<view hlookat="0" vlookat="0" fov="90" architectural="1.0" hlookatmin="-360.0" hlookatmax="0.0" vlookatmin="-30" vlookatmax="30" limitview="lookat"/>
		<hotspot name="bautraeger_bp90c80_druck_info" style="info_hotspot_style" ath="20" atv="15" onclick="js(handleHotspotClick(get(name)));" hovertext="BP-90C80 | Drucken wie die Profis."/>
		<hotspot name="bautraeger_bp90c80_fiery_info" style="info_hotspot_style" ath="60" atv="18" onclick="js(handleHotspotClick(get(name)));" hovertext="BP-90C80 | Starkes, digitales Frontend."/>
		<hotspot name="bautraeger_bp90c80_finish_info" style="info_hotspot_style" ath="-25" atv="4" onclick="js(handleHotspotClick(get(name)));" hovertext="BP-90C80 | Perfektes Finish"/>
		<hotspot name="bautraeger_bp90c80_bedienung_info" style="info_hotspot_style" ath="5" atv="0" onclick="js(handleHotspotClick(get(name)));" hovertext="BP-90C80 | Unkomplizierte Bedienung direkt über das Geräte-Display"/>
		<hotspot name="bautraeger_zu_arbeitsplaetzen_nav" style="nav_hotspot_style" ath="-120" atv="10" onclick="do_zoom_transition(scene_architect_office_0002);" hovertext="zum Display"/>
		<hotspot name="bautraeger_zurueck_meeting_nav" style="nav_hotspot_style" ath="180" atv="0" onclick="do_zoom_transition(scene_architect_office);" hovertext="Zurück zum Meeting" visible="false"/>
		<hotspot name="bautraeger_zum_office_nav" style="nav_hotspot_style" ath="-160" atv="10" onclick="do_zoom_transition(scene_architect_office_1);" hovertext="Zurück zum Office"/>
	</scene>

	<scene name="scene_architect_office_0002" title="Büro 1 (Arbeitsplätze 3)">
		<image><sphere url="./spheres/Mono_S_ArchitectOffice.0006.jpg"/></image>
		<view hlookat="0" vlookat="5" fov="80" architectural="1.0" hlookatmin="360" hlookatmax="0" vlookatmin="20" vlookatmax="-20" limitview="lookat"/>
		<hotspot name="bautraeger_pn_la862_info" style="info_hotspot_style" ath="0" atv="5" onclick="js(handleHotspotClick(get(name)));" hovertext="PN-LA862 | High-End Collaboration für Bauprojekte"/>
		<hotspot name="bautraeger_standfuss2_info" style="info_hotspot_style" ath="0" atv="15" onclick="js(handleHotspotClick(get(name)));" hovertext="Flexibler, motorisierter Standfuss für große Displays"/>
		<hotspot name="bautraeger_bp56c26_info" style="info_hotspot_style" ath="-52" atv="5" onclick="js(handleHotspotClick(get(name)));" hovertext="BP-56C26 | Ohne Rechner aus MS-Teams drucken – oder in Verzeichnisse scannen."/>
		<hotspot name="bautraeger_zum_office_nav" style="nav_hotspot_style" ath="180" atv="10" onclick="do_zoom_transition(scene_architect_office_1);" hovertext="Zurück zum Office"/>
	</scene>

	<scene name="scene_homeoffice" title="Mobile Office">
		<image><sphere url="./spheres/MonoEye.S_HomeOffice.0002.jpg"/></image>
		<view hlookat="-00" vlookat="5" fov="90" architectural="1.0" hlookatmin="0" hlookatmax="360" vlookatmin="-30" vlookatmax="30" limitview="lookat"/>
		<hotspot name="mobileoffice_bpc131wd_info" style="info_hotspot_style" ath="-40" atv="15" onclick="js(handleHotspotClick(get(name)));" hovertext="BP-C131WD | Flexibel, kompakt und nachhaltig."/>
		<hotspot name="mobileoffice_druckmanagement_info" style="info_hotspot_style" ath="20" atv="10" onclick="js(handleHotspotClick(get(name)));" hovertext="Flexible und transparente Druckmanagementlösung."/>
		<hotspot name="mobileoffice_ea242w_info" style="info_hotspot_style" ath="0" atv="5" onclick="js(handleHotspotClick(get(name)));" hovertext="EA242W | Produktiv und komfortabel zu Hause"/>
		<hotspot name="bautraeger_von_homeoffice_nav" style="nav_hotspot_style" ath="180" atv="0" onclick="do_zoom_transition(scene_architect_office);" hovertext="Zum Büro 1" visible="false"/>
		<hotspot name="mobileoffice_zur_hotellobby_nav" style="nav_hotspot_style" ath="-90" atv="0" onclick="do_zoom_transition(scene_hotel_lobby);" hovertext="Zur Hotel Lobby" visible="false"/>
		<hotspot name="mobileoffice_zum_steuerberater_nav" style="nav_hotspot_style" ath="90" atv="0" onclick="do_zoom_transition(scene_office_meeting);" hovertext="Zum Office 2" visible="false"/>
		<hotspot name="mobileoffice_zum_coworking_nav" style="nav_hotspot_style" ath="30" atv="0" onclick="do_zoom_transition(scene_business_center_1);" hovertext="Zum Business Center" visible="false"/>
	</scene>

	<scene name="scene_hotel_reception" title="Rezeption" onstart="delayedcall(1.2, load_hotel_video_delayed());">
		<image><sphere url="./spheres/Mono_S_Hotel.0002.jpg"/></image>
		<view hlookat="-90" vlookat="20" fov="90" architectural="1.0" hlookatmin="0" hlookatmax="360.0" vlookatmin="-90" vlookatmax="90" limitview="lookat"/>
		<hotspot name="video_screen_3d"
		         type="text"
		         ath="-43" atv="-40" rx="-40" ry="-45" rz="0"
		         distorted="true"
		         width="1920" height="1080" scale="0.27"
		         edge="center" bg="false" zorder="10"
		         enabled="true" capture="false"
		         alpha="50.0" visible="true"
		         css="width:1920px; height:1080px; pointer-events:none;"
		         html=""
		         />
		<hotspot name="hotel_rezeption_ledwall_info" style="info_hotspot_style" ath="-30" atv="-25" onclick="js(handleHotspotClick(get(name)));" hovertext="Beeindruckende Visuals für Ihr Hotel"/>
		<hotspot name="hotel_rezeption_bp22c25_info" style="info_hotspot_style" ath="3" atv="11" onclick="js(handleHotspotClick(get(name)));" hovertext="BP-22C25 | Der bietet, was Sie brauchen – modern und kompakt."/>
		<hotspot name="hotel_rezeption_epc131_desk_info" style="info_hotspot_style" ath="25" atv="20" onclick="js(handleHotspotClick(get(name)));" hovertext="EP-C131 | Informationen stilvoll präsentieren am Welcome Desk"/>
		<hotspot name="hotel_rezeption_ea272q_info" style="info_hotspot_style" ath="17" atv="15" onclick="js(handleHotspotClick(get(name)));" hovertext="EA272Q | Komfort und Übersicht am Empfang"/>
		<hotspot name="hotel_rezeption_epc131_wand_info" style="info_hotspot_style" ath="-80" atv="23" onclick="js(handleHotspotClick(get(name)));" hovertext="EP-C131 | Informationen stilvoll präsentieren am Welcome Desk"/>
		<hotspot name="hotel_lobby_mxc428f_info" style="info_hotspot_style" ath="-105" atv="17" onclick="js(handleHotspotClick(get(name)));" hovertext="MX-C428F | Ein kleiner Druckservice für zufriedene Gäste."/>
		<hotspot name="hotel_hinter_tresen_nav" style="nav_hotspot_style" ath="0" atv="25" onclick="do_zoom_transition(scene_hotel_counter1);" hovertext="hinter den Tresen"/>
		<hotspot name="hotel_vor_tresen_nav" style="nav_hotspot_style" ath="35" atv="15" onclick="do_zoom_transition(scene_hotel_counter2);" hovertext="vor den Tresen"/>
		<hotspot name="hotel_zur_bar_nav" style="nav_hotspot_style" ath="50" atv="8" onclick="do_zoom_transition(scene_hotel_bar);" hovertext="Digital Signage Eingang"/>
		<hotspot name="hotel_zur_lobby_nav" style="nav_hotspot_style" ath="65" atv="10" onclick="do_zoom_transition(scene_hotel_lobby);" hovertext="zur Lobby"/>
	</scene>

	<scene name="scene_hotel_lobby" title="Hotel Lobby (lobby)" onstart="delayedcall(1.2, load_hotel_video_delayed());">
		<image><sphere url="./spheres/Mono_S_Hotel.0006.jpg"/></image>
		<view hlookat="-5" vlookat="0" fov="90" architectural="1.0" hlookatmin="-360.0" hlookatmax="0" vlookatmin="-90" vlookatmax="90" limitview="lookat"/>
		<hotspot name="video_screen_3d"
		         type="text"
		         ath="3" atv="-28.35" rx="-28" ry="-5" rz="0" 
		         distorted="true"
		         width="1920" height="1080" scale="0.16"
		         edge="center" bg="false" zorder="10"
		         enabled="true" capture="false"
		         alpha="0.0" visible="true"
		         css="width:1920px; height:1080px; pointer-events:none;"
		         html=""
		         />
		<hotspot name="hotel_rezeption_ledwall_info" style="info_hotspot_style" ath="25" atv="-20" onclick="js(handleHotspotClick(get(name)));" hovertext="Beeindruckende Visuals für Ihr Hotel" zorder="11"/>
		<hotspot name="hotel_lobby_mxc428f_info" style="info_hotspot_style" ath="-20" atv="2" onclick="js(handleHotspotClick(get(name)));" hovertext="MX-C428F | Ein kleiner Druckservice für zufriedene Gäste."/>
		<hotspot name="hotel_lobby_epc251_info" style="info_hotspot_style" ath="70" atv="-5" onclick="js(handleHotspotClick(get(name)));" hovertext="EP-C251 | Wayfinding leicht gemacht"/>
		<hotspot name="hotel_hinter_tresen2_nav" style="nav_hotspot_style" ath="0" atv="0" onclick="do_zoom_transition(scene_hotel_counter1);" hovertext="hinter den Tresen"/>
		<hotspot name="hotel_vor_tresen_nav" style="nav_hotspot_style" ath="0" atv="5" onclick="do_zoom_transition(scene_hotel_counter2);" hovertext="vor den Tresen"/>
		<hotspot name="hotel_zur_bar_nav" style="nav_hotspot_style" ath="70" atv="00" onclick="do_zoom_transition(scene_hotel_bar);" hovertext="Digital Signage Eingang"/>
		<hotspot name="hotel_zur_rezeption2_nav" style="nav_hotspot_style" ath="-25" atv="0" onclick="do_zoom_transition(scene_hotel_reception);" hovertext="zum A4-Drucker"/>
	</scene>

	<scene name="scene_hotel_counter1" title="Hotel Counter" onstart="delayedcall(1.2, load_hotel_video_delayed());">
		<image><sphere url="./spheres/Mono_S_Hotel.0021.jpg"/></image>
		<view hlookat="0" vlookat="0" fov="90" architectural="1.0" hlookatmin="-360.0" hlookatmax="0" vlookatmin="-90" vlookatmax="90" limitview="lookat"/>
		<hotspot name="video_screen_3d"
		         type="text"
		         ath="-160" atv="-57" rx="-52" ry="-20" rz="2"
		         distorted="true"
		         width="1920" height="1080" scale="0.30"
		         edge="center" bg="false" zorder="10"
		         enabled="true" capture="false"
		         alpha="0.0" visible="true"
		         css="width:1920px; height:1080px; pointer-events:none;"
		         html=""
		         />
		<hotspot name="hotel_lobby_mxc428f_info" style="info_hotspot_style" ath="95" atv="7" onclick="js(handleHotspotClick(get(name)));" hovertext="MX-C428F | Ein kleiner Druckservice für zufriedene Gäste."/>
		<hotspot name="hotel_rezeption_epc131_info" style="info_hotspot_style" ath="36" atv="2" onclick="js(handleHotspotClick(get(name)));" hovertext="EP-C131 | Informationen stilvoll präsentieren am Welcome Desk"/>
		<hotspot name="hotel_rezeption_bp22c25_info" style="info_hotspot_style" ath="-80" atv="10" onclick="js(handleHotspotClick(get(name)));" hovertext="BP-22C25 | Der bietet, was sie brauchen - modern und kompakt."/>	
	
		<hotspot name="hotel_rezeption_ea272q_info" style="info_hotspot_style" ath="0" atv="10" onclick="js(handleHotspotClick(get(name)));" hovertext="EA272Q | Komfort und Übersicht am Empfang."/>
		<hotspot name="hotel_zur_bar_nav" style="nav_hotspot_style" ath="-45" atv="0" onclick="do_zoom_transition(scene_hotel_bar);" hovertext="Digital Signage Eingang"/>
		<hotspot name="hotel_zur_lobby2_nav" style="nav_hotspot_style" ath="-10" atv="5" onclick="do_zoom_transition(scene_hotel_lobby);" hovertext="zur Lobby"/> 
		<hotspot name="hotel_zum_drucker_nav" style="nav_hotspot_style" ath="85" atv="10" onclick="do_zoom_transition(scene_hotel_reception);" hovertext="zum A4-Drucker"/>
	</scene>

	<scene name="scene_hotel_bar" title="Bar" onstart="delayedcall(1.2, load_hotel_video_delayed());">
		<image><sphere url="./spheres/Mono_S_Hotel.0026.jpg"/></image>
		<view hlookat="00" vlookat="0" fov="90" architectural="1.0" hlookatmin="-360.0" hlookatmax="0" vlookatmin="-10" vlookatmax="10" limitview="lookat"/>
		<hotspot name="video_screen_3d"
		         ath="-220" atv="-20" rx="-17" ry="30" rz=".5"
		         type="text"
		         distorted="true"
		         width="1920" height="1080" scale="0.14"
		         edge="center" bg="false" zorder="10"
		         enabled="true" capture="false"
		         alpha="0.0" visible="true"
		         css="width:1920px; height:1080px; pointer-events:none;"
		         html=""
		         />
		<hotspot name="hotel_rezeption_ledwall_info" style="info_hotspot_style" ath="140" atv="-20" onclick="js(handleHotspotClick(get(name)));" hovertext="Beeindruckende Visuals für Ihr Hotel"/>
		<hotspot name="hotel_lobby_mxc428f_info" style="info_hotspot_style" ath="120" atv="2" onclick="js(handleHotspotClick(get(name)));" hovertext="MX-C428F | Ein kleiner Druckservice für zufriedene Gäste."/>
		<hotspot name="hotel_rezeption_epc131_info" style="info_hotspot_style" ath="63" atv="0" onclick="js(handleHotspotClick(get(name)));" hovertext="EP-C251 | Wayfinding leicht gemacht"/>
		<hotspot name="hotel_lobby_me552_links_info" style="info_hotspot_style" ath="-15" atv="-5" onclick="js(handleHotspotClick(get(name)));" hovertext="ME552 | Beeindruckende Darstellung für Ihre Gäste"/>
		<hotspot name="hotel_lobby_remote_steuerung_info" style="info_hotspot_style" ath="-15" atv="-10" onclick="js(handleHotspotClick(get(name)));" hovertext="Zentrale Steuerung für digitale Inhalte"/>
		<hotspot name="hotel_lobby_me552_rechts_info" style="info_hotspot_style" ath="20" atv="-3" onclick="js(handleHotspotClick(get(name)));" hovertext="ME552 | Informationen, die ankommen"/>
		<hotspot name="hotel_lobby_remote_dauerbetrieb_info" style="info_hotspot_style" ath="20" atv="-7" onclick="js(handleHotspotClick(get(name)));" hovertext="Displays für Dauerbetrieb | Zuverlässig rund um die Uhr "/>
		<hotspot name="hotel_zur_rezeption_nav" style="nav_hotspot_style" ath="115" atv="5" onclick="do_zoom_transition(scene_hotel_reception);" hovertext="zum Drucker"/>
		<hotspot name="hotel_hinter_tresen_nav" style="nav_hotspot_style" ath="140" atv="0" onclick="do_zoom_transition(scene_hotel_counter1);" hovertext="hinter den Tresen"/>
		<hotspot name="hotel_vor_tresen_nav" style="nav_hotspot_style" ath="130" atv="10" onclick="do_zoom_transition(scene_hotel_counter2);" hovertext="vor den Tresen"/>
		<hotspot name="hotel_zur_lobby2_nav" style="nav_hotspot_style" ath="50" atv="20" onclick="do_zoom_transition(scene_hotel_lobby);" hovertext="zur Lobby"/>
	</scene>

	<scene name="scene_hotel_counter2" title="Hotel Counter" onstart="delayedcall(1.2, load_hotel_video_delayed());">
		<image><sphere url="./spheres/Mono_S_Hotel.0011.jpg"/></image>
		<view hlookat="-5" vlookat="0" fov="90" architectural="1.0" hlookatmin="-360.0" hlookatmax="0" vlookatmin="-10" vlookatmax="10" limitview="lookat"/>
		<hotspot name="video_screen_3d"
		         type="text"
		         ath="2" atv="-38" rx="-35" ry="-0" rz="1"
		         distorted="true"
		         width="1920" height="1080" scale="0.22"
		         edge="center" bg="false" zorder="10"
		         enabled="true" capture="false"
		         alpha="0.0" visible="true"
		         css="width:1920px; height:1080px; pointer-events:none;"
		         html=""
		         />
		<hotspot name="hotel_rezeption_ledwall_info" style="info_hotspot_style" ath="00" atv="-30" onclick="js(handleHotspotClick(get(name)));" hovertext="Beeindruckende Visuals für Ihr Hotel"/>
		<hotspot name="hotel_lobby_mxc428f_info" style="info_hotspot_style" ath="-45" atv="2" onclick="js(handleHotspotClick(get(name)));" hovertext="MX-C428F | Ein kleiner Druckservice für zufriedene Gäste."/>
		<hotspot name="hotel_rezeption_epc131_info" style="info_hotspot_style" ath="48" atv="0" onclick="js(handleHotspotClick(get(name)));" hovertext="EP-C131 | Informationen stilvoll präsentieren am Welcome Desk"/>
		<hotspot name="hotel_lobby_me552_links_info" style="info_hotspot_style" ath="165" atv="-00" onclick="js(handleHotspotClick(get(name)));" hovertext="ME552 | Beeindruckende Darstellung für Ihre Gäste"/>
		<hotspot name="hotel_lobby_remote_steuerung_info" style="info_hotspot_style" ath="165" atv="-5" onclick="js(handleHotspotClick(get(name)));" hovertext="Zentrale Steuerung für digitale Inhalte"/>
		<hotspot name="hotel_lobby_me552_rechts_info" style="info_hotspot_style" ath="190" atv="-0" onclick="js(handleHotspotClick(get(name)));" hovertext="ME552 | Informationen, die ankommen"/>
		<hotspot name="hotel_lobby_remote_dauerbetrieb_info" style="info_hotspot_style" ath="190" atv="-5" onclick="js(handleHotspotClick(get(name)));" hovertext="Displays für Dauerbetrieb | Zuverlässig rund um die Uhr "/>
		<hotspot name="hotel_zur_rezeption_nav" style="nav_hotspot_style" ath="-50" atv="8" onclick="do_zoom_transition(scene_hotel_reception);" hovertext="zum Drucker"/>
		<hotspot name="hotel_hinter_tresen_nav" style="nav_hotspot_style" ath="0" atv="0" onclick="do_zoom_transition(scene_hotel_counter1);" hovertext="hinter den Tresen"/>
		<hotspot name="hotel_zur_bar_nav" style="nav_hotspot_style" ath="140" atv="12" onclick="do_zoom_transition(scene_hotel_bar);" hovertext="Digital Signage Eingang"/>
		<hotspot name="hotel_zur_lobby2_nav" style="nav_hotspot_style" ath="175" atv="10" onclick="do_zoom_transition(scene_hotel_lobby);" hovertext="zur Lobby"/>
	</scene>

	<scene name="scene_business_center_0" title="Business Center (Start)">
		<image><sphere url="./spheres/Mono_S_BusinessCentre.0002.jpg"/></image>
		<view hlookat="-50" vlookat="3" fov="90" architectural="1.0" hlookatmin="-70.0" hlookatmax="60.0" vlookatmin="-30" vlookatmax="30" limitview="lookat"/>
		<hotspot name="coworking_bp71c31_info" style="info_hotspot_style" ath="-80" atv="10" onclick="js(handleHotspotClick(get(name)));" hovertext="BP-71C31 | Easy Printing für alle."/>	
		<hotspot name="coworking_druckabrechnung_info" style="info_hotspot_style" ath="-80" atv="0" onclick="js(handleHotspotClick(get(name)));" hovertext="Einfach und flexibel drucken und abrechnen."/>
		<hotspot name="coworking_lm431_info" style="info_hotspot_style" ath="-30" atv="-5" onclick="js(handleHotspotClick(get(name)));" hovertext="LM431 | Kompakte Interaktivität für Ihren Meetingraum"/>
		<hotspot name="coworking_hybrid_info" style="info_hotspot_style" ath="-30" atv="0" onclick="js(handleHotspotClick(get(name)));" hovertext="Hybride Meetings einfach gestalten"/>
		<hotspot name="coworking_ea272q_info" style="info_hotspot_style" ath="18" atv="0" onclick="js(handleHotspotClick(get(name)));" hovertext="EA272Q | Flexibles Arbeiten in Co-Working Spaces"/>
		<hotspot name="coworking_byod_info" style="info_hotspot_style" ath="42" atv="0" onclick="js(handleHotspotClick(get(name)));" hovertext="BYOD ohne Grenzen nutzen"/>
		<hotspot name="coworking_zum_huddle_nav" style="nav_hotspot_style" ath="-50" atv="15" onclick="do_zoom_transition(scene_business_center_3);" hovertext="zum Huddle"/>
		<hotspot name="coworking_zur_mitte_nav" style="nav_hotspot_style" ath="10" atv="20" onclick="do_zoom_transition(scene_business_center_1);" hovertext="zur Mitte"/>
		<hotspot name="coworking_nach_rechts_nav" style="nav_hotspot_style" ath="50" atv="15" onclick="do_zoom_transition(scene_business_center_2);" hovertext="nach Rechts"/>
	</scene>
	
	<scene name="scene_business_center_1" title="Mint">
		<image><sphere url="./spheres/Mono_S_BusinessCentre.0009.jpeg"/></image>
		<view hlookat="00" vlookat="10" fov="100" architectural="1.0" hlookatmin="0" hlookatmax="360" vlookatmin="-30" vlookatmax="30" limitview="lookat"/>
		<hotspot name="coworking_bp71c31_info" style="info_hotspot_style" ath="-100" atv="5" onclick="js(handleHotspotClick(get(name)));" hovertext="BP-71C31 | Easy Printing für alle."/>	
		<hotspot name="coworking_ea272q_info" style="info_hotspot_style" ath="30" atv="0" onclick="js(handleHotspotClick(get(name)));" hovertext="EA272Q | Flexibles Arbeiten in Co-Working Spaces"/>
		<hotspot name="coworking_zum_huddle_nav" style="nav_hotspot_style" ath="-80" atv="14" onclick="do_zoom_transition(scene_business_center_3);" hovertext="zum Huddle"/>
		<hotspot name="coworking_zur_mitte_nav" style="nav_hotspot_style" ath="75" atv="23" onclick="do_zoom_transition(scene_business_center_2);" hovertext="nach Rechts"/>
		<hotspot name="coworking_open_space_nav" style="nav_hotspot_style" ath="-190" atv="30" onclick="do_zoom_transition(scene_business_center_0);" hovertext="zurück in den Open Space"/>
	</scene>

	<scene name="scene_business_center_2" title="Orange)">
		<image><sphere url="./spheres/Mono_S_BusinessCentre.0008.jpeg"/></image>
		<view hlookat="0" vlookat="0" fov="90" architectural="1.0" hlookatmin="0" hlookatmax="360" vlookatmin="-30" vlookatmax="30" limitview="lookat"/>
		<hotspot name="coworking_byod_info" style="info_hotspot_style" ath="32" atv="0" onclick="js(handleHotspotClick(get(name)));" hovertext="BYOD ohne Grenzen nutzen"/>
		<hotspot name="coworking_bp71c31_info" style="info_hotspot_style" ath="-100" atv="5" onclick="js(handleHotspotClick(get(name)));" hovertext="BP-71C31 | Easy Printing für alle."/>	
		<hotspot name="coworking_zum_huddle_nav" style="nav_hotspot_style" ath="-85" atv="8" onclick="do_zoom_transition(scene_business_center_3);" hovertext="zum Huddle"/>
		<hotspot name="coworking_nach_rechts_nav" style="nav_hotspot_style" ath="-80" atv="20" onclick="do_zoom_transition(scene_business_center_1);" hovertext="zur Mitte"/>
		<hotspot name="coworking_open_space_nav" style="nav_hotspot_style" ath="180" atv="30" onclick="do_zoom_transition(scene_business_center_0);" hovertext="zurück in den Open Space"/>
	</scene>
	
	<scene name="scene_business_center_3" title="Huddle">
		<image><sphere url="./spheres/Mono_S_BusinessCentre.0007.jpg"/></image>
		<view hlookat="0" vlookat="5" fov="90" architectural="1.0" hlookatmin="0.0" hlookatmax="360.0" vlookatmin="-30" vlookatmax="30" limitview="lookat"/>
		<hotspot name="coworking_hybrid_info" style="info_hotspot_style" ath="0" atv="5" onclick="js(handleHotspotClick(get(name)));" hovertext="Hybride Meetings einfach gestalten"/>
		<hotspot name="coworking_lm431_info" style="info_hotspot_style" ath="00" atv="-5" onclick="js(handleHotspotClick(get(name)));" hovertext="LM431 | Kompakte Interaktivität für Ihren Meetingraum"/>
		<hotspot name="coworking_bp71c31_info" style="info_hotspot_style" ath="-130" atv="5" onclick="js(handleHotspotClick(get(name)));" hovertext="BP-71C31 | Easy Printing für alle."/>	
		<hotspot name="coworking_open_space_nav" style="nav_hotspot_style" ath="-205" atv="25" onclick="do_zoom_transition(scene_business_center_0);" hovertext="zurück in den Open Space"/>
		<hotspot name="coworking_zur_mitte_nav" style="nav_hotspot_style" ath="84" atv="13" onclick="do_zoom_transition(scene_business_center_2);" hovertext="nach Rechts"/>
		<hotspot name="coworking_nach_rechts_nav" style="nav_hotspot_style" ath="80" atv="20" onclick="do_zoom_transition(scene_business_center_1);" hovertext="zur Mitte"/>
	</scene>

	<scene name="scene_office_meeting" title="Steuerberater Meeting">
		<image><sphere url="./spheres/Mono_S_OfficeandMeeting.0005.jpg"/></image>
		<view hlookat="10" vlookat="7" fov="90" architectural="1.0" hlookatmin="-10.0" hlookatmax="170.0" vlookatmin="-30" vlookatmax="30" limitview="lookat"/>
		<hotspot name="steuerberater_pnl752b_info" style="info_hotspot_style" ath="35" atv="0" onclick="js(handleHotspotClick(get(name)));" hovertext="PN-L752B | Effiziente Besprechungen leicht gemacht"/>
		<hotspot name="steuerberater_synappx_info" style="info_hotspot_style" ath="-20" atv="15" onclick="js(handleHotspotClick(get(name)));" hovertext="Synappx Meeting - Meetings neu denken!"/>
		<hotspot name="steuerberater_audio_info" style="info_hotspot_style" ath="35" atv="-14" onclick="js(handleHotspotClick(get(name)));" hovertext="Perfekte Audio-Lösungen für Ihre Displays!"/>
		<hotspot name="steuerberater_software_info" style="info_hotspot_style" ath="50" atv="0" onclick="js(handleHotspotClick(get(name)));" hovertext="Passende Softwarelösungen für jeden Bedarf"/>
		<hotspot name="bautraeger_von_steuerberater_nav" style="nav_hotspot_style" ath="115" atv="20" onclick="do_zoom_transition(scene_office_meeting_2);" hovertext="Ins Office" visible="true"/>
	</scene>

	<scene name="scene_office_meeting_2" title="Steuerberater Office ">
		<image><sphere url="./spheres/Mono_S_OfficeandMeeting.0002.jpg"/></image>
		<view hlookat="-170" vlookat="5" fov="90" architectural="1.0" hlookatmin="-260.0" hlookatmax="-80.0" vlookatmin="-30" vlookatmax="30" limitview="lookat"/>
		<hotspot name="steuerberater_bpc542wd_info" style="info_hotspot_style" ath="-160" atv="25" onclick="js(handleHotspotClick(get(name)));" hovertext="BP-C542WD | Klein wie A4 – stark wie ein A3-Multifunktionsdrucker."/>
		<hotspot name="steuerberater_cloudprint_info" style="info_hotspot_style" ath="-160" atv="15" onclick="js(handleHotspotClick(get(name)));" hovertext="Drucken Sie, wo Sie wollen – mit Synappx Cloud Print."/>
		<hotspot name="steuerberater_ea271f_info" style="info_hotspot_style" ath="-125" atv="10" onclick="js(handleHotspotClick(get(name)));" hovertext="EA271F | Ergonomisch arbeiten im Büro"/>
		<hotspot name="steuerberater_zurueck_meeting_nav" style="nav_hotspot_style" ath="180" atv="0" onclick="do_zoom_transition(scene_office_meeting);" hovertext="Zurück zu Meeting 1" visible="false"/>
		<hotspot name="steuerberater_zum_druckerraum_nav" style="nav_hotspot_style" ath="-90" atv="15" onclick="do_zoom_transition(scene_office_meeting_3);" hovertext="Zum Druckerraum"/>
	</scene>

	<scene name="scene_office_meeting_3" title="Steuerberater Druckerraum">
		<image><sphere url="./spheres/Mono_S_OfficeandMeeting.0008.jpg"/></image>
		<view hlookat="0" vlookat="-10" fov="90" architectural="1.0" hlookatmin="-360.0" hlookatmax="0.0" vlookatmin="-30" vlookatmax="30" limitview="lookat"/>
		<hotspot name="steuerberater_pullprint_info" style="info_hotspot_style" ath="-40" atv="10" onclick="js(handleHotspotClick(get(name)));" hovertext="Drucken Sie, wo Sie wollen – mit Synappx Cloud Print."/>
		<hotspot name="steuerberater_scan_info" style="info_hotspot_style" ath="0" atv="10" onclick="js(handleHotspotClick(get(name)));" hovertext="Scanlösungen: Dokumente direkt in Mandantenakten scannen."/>
		<hotspot name="steuerberater_bp71c65_info" style="info_hotspot_style" ath="0" atv="20" onclick="js(handleHotspotClick(get(name)));" hovertext="BP-71C65 | Hochwertiger Farbdruck ist klar, doch dieses Powerpaket kann noch mehr …"/>
		<hotspot name="steuerberater_bp71m65_info" style="info_hotspot_style" ath="-40" atv="30" onclick="js(handleHotspotClick(get(name)));" hovertext="BP-71M65 | Der macht Druck"/>
		<hotspot name="steuerberater_zurueck_meeting2_nav" style="nav_hotspot_style" ath="180" atv="0" onclick="do_zoom_transition(scene_office_meeting);" hovertext="Zurück zu Meeting 1" visible="false"/>
		<hotspot name="steuerberater_zurueck_office_nav" style="nav_hotspot_style" ath="-180" atv="30" onclick="do_zoom_transition(scene_office_meeting_2);" hovertext="Zurück zum Office"/>
	</scene>

	<scene name="scene_outdoor" title="Outdoor Bereich" onstart="delayedcall(1.2, load_outdoor_video_delayed());">
		<image><sphere url="./spheres/Mono_S_Outdoor.0007.jpg"/></image>
		<hotspot name="video_screen_3d"
		         type="text"
		         ath="-42" atv="-9.6" rx="-10" ry="-15" rz="0"
		         distorted="true"
		         width="1920" height="1080" scale="0.08"
		         edge="center" bg="false" zorder="10"
		         enabled="true" capture="false"
		         alpha="0.0" visible="true"
		         css="width:1920px; height:1080px; pointer-events:none;"
		         html=""
		         />
			 
		<!-- <hotspot name="video_screen_3d2"
		         type="text"
		         ath="-142" atv="0.6" rx="-10" ry="-15" rz="0"
		         distorted="true"
		         width="1920" height="1080" scale="0.08"
		         edge="center" bg="false" zorder="10"
		         enabled="true" capture="false"
		         alpha="0.0" visible="true"
		         css="width:1920px; height:1080px; pointer-events:none;"
		         html=""
		         /> -->
		<hotspot name="plaza_led" style="info_hotspot_style" ath="-35" atv="-3" onclick="js(handleHotspotClick(get(name)));" hovertext="LED"/>
		<hotspot name="plaza_about" style="info_hotspot_style" ath="0" atv="-3" onclick="js(handleHotspotClick(get(name)));" hovertext="About"/>

		<view hlookat="0" vlookat="5" fov="70" architectural="1.0" hlookatmin="0.0" hlookatmax="360.0" vlookatmin="-10" vlookatmax="10" limitview="lookat"/>

		<hotspot name="hotel_von_plaza_nav" style="nav_hotspot_style" ath="60" atv="0" onclick="do_zoom_transition(scene_hotel_lobby);" hovertext="Hotel"/>
		<hotspot name="steuerberater_von_plaza_nav" style="nav_hotspot_style" ath="100" atv="0" onclick="do_zoom_transition(scene_office_meeting);" hovertext="Steuerberater"/>
		<hotspot name="coworking_von_plaza_nav" style="nav_hotspot_style" ath="-15" atv="0" onclick="do_zoom_transition(scene_business_center_0);" hovertext="Co-Working"/>
		<hotspot name="bautraeger_von_plaza2_nav" style="nav_hotspot_style" ath="-45" atv="0" onclick="do_zoom_transition(scene_architect_office);" hovertext="Generalunternehmer"/>
		<hotspot name="bautraeger_von_plaza_nav" style="nav_hotspot_style" ath="10" atv="0" onclick="do_zoom_transition(scene_it_service);" hovertext="Sharp IT-Service"/>
	</scene>

	<scene name="scene_it_service" title="IT Service Raum">
		<image><sphere url="./spheres/Mono_S_ITService.0004.jpg"/></image>
		<view hlookat="-30" vlookat="5" fov="90" architectural="1.0" hlookatmin="-140.0" hlookatmax="40.0" vlookatmin="-30" vlookatmax="30" limitview="lookat"/>
		<hotspot name="it_netzwerk_switch_info" style="info_hotspot_style" ath="-35" atv="20" onclick="js(handleHotspotClick(get(name)));" hovertext="Netzwerk-Switch"/>
		<hotspot name="it_firewall_info" style="info_hotspot_style" ath="-32" atv="16" onclick="js(handleHotspotClick(get(name)));" hovertext="Firewall"/>
		<hotspot name="it_monitoring_info" style="info_hotspot_style" ath="13" atv="5" onclick="js(handleHotspotClick(get(name)));" hovertext="Proaktive Überwachung für maximale Sicherheit"/>
		<hotspot name="it_hardware_info" style="info_hotspot_style" ath="37" atv="18" onclick="js(handleHotspotClick(get(name)));" hovertext="Beschaffung Ihrer IT-Hardware und Software – von A bis Z"/>
		<hotspot name="it_managed_service_info" style="info_hotspot_style" ath="-90" atv="0" onclick="js(handleHotspotClick(get(name)));" hovertext="Bei uns ist Ihre IT in guten Händen"/>
		<hotspot name="it_synappx_info" style="info_hotspot_style" ath="-60" atv="0" onclick="js(handleHotspotClick(get(name)));" hovertext="Synappx Manage für volle Kontrolle"/>
		<hotspot name="it_security_info" style="info_hotspot_style" ath="-0" atv="5" onclick="js(handleHotspotClick(get(name)));" hovertext="Security Awareness Training"/>
		<hotspot name="it_multisync_e659_info" style="info_hotspot_style" ath="-60" atv="-10" onclick="js(handleHotspotClick(get(name)));" hovertext="Sharp MultiSync® E659 I Klar. Zuverlässig. Professionell."/>
		<hotspot name="it_geraetemanagement_info" style="info_hotspot_style" ath="-25" atv="11" onclick="js(handleHotspotClick(get(name)));" hovertext="Gerätemanagement"/>
	</scene>

</krpano>