LIVE           051300300   0802255         Frekvence
 

Promocija Šaleške doline

Pridobili so denar za digitalno promocijo turistične ponudbe
Ključne besede: Zavod za turizem Šaleške doline, promocija, turizem, Velenje
// 0; if (!window.owaSDState.fcr) { if (!isPopOut) { try { window.owaSDConsumable=false; window.owaSDConsumed = false; sendOwaSDRequest(false); } catch (ex) { window.owaLastErrorReported = ex; throw ex; } } else { onunloadbeforeboot = function() { callPopOutBootErrorCallback("PopOutClosed"); }; if (window.attachEvent) { window.attachEvent("onunload", onunloadbeforeboot); } else { window.addEventListener("unload", onunloadbeforeboot, false); } } } function createOwaSDXMLHttpRequest() { var request = null; try { request = new window.XMLHttpRequest(); } catch (e) { if (window.ActiveXObject) { request = new window.ActiveXObject("Microsoft.XMLHTTP"); } } return request; } function sendOwaSDRequest(retryAttempt) { window.owaSDState.usrPending = 1; window.owaSDState.usrReceived = false; window.owaSD = createOwaSDXMLHttpRequest(); window.owaSD.retryAttempt = retryAttempt; window.owaSD.open("POST","sessiondata.ashx" + getSdqp(retryAttempt)); window.owaSD.onreadystatechange = sdResponseHandler; window.owaSD.setRequestHeader("X-OWA-CorrelationId", window.corrId); window.owaSD.clientRequestId = window.corrId; window.owaSD.setRequestHeader("client-request-id", window.owaSD.clientRequestId); try { if (navigator.userAgent.indexOf("OWASMIME/" > 0)) { window.owaSD.setRequestHeader("X-OWA-SmimeInstalled", "1"); } else if (window.ActiveXObject) { var smimePlugin = new ActiveXObject("Microsoft.Exchange.Clients.SmimeAX"); window.owaSD.setRequestHeader("X-OWA-SmimeInstalled", "1"); smimePlugin.Dispose(); } } catch (e) { } window.owaSD.send(); } function getSdqp(retryAttempt) { var sdqp = "?appcacheclient=1"; sdqp += "&acver=15.1.2242.8"; sdqp += "&crr=1"; if (retryAttempt) { sdqp += "&crrretry=1"; } return sdqp; } function sdResponseHandler() { try { if (!window.owaSD) { return; } if (!tryAuthOwaSD()) { return; } if (!window.owaSDState.usrReceived && !(window.owaSDState.usrReceived = tryReceiveUSR())) { return; } if (!window.owaSDState.sdReceived && !(window.owaSDState.sdReceived = tryReceiveSD())) { return; } completeOwaSD(); } catch (ex) { window.owaLastErrorReported = ex; throw ex; } } function tryCheckOptinPrecondition() { if (window.owaSD.status == 412) { var actualVdir = window.owaSD.getResponseHeader("X-Js-ClientVdir"); if (actualVdir != null) { postBootTrace("OptinRedirect"); redirectToUrl("/" + actualVdir + "/"); return false; } } return true; } function isMailModule(){ var result = false; var href = null; try { href = decodeURIComponent(window.location.href); } catch(e) { } if (href != null) { if (href.indexOf('viewmodel=') >= 0) { result = false; } else if(href.indexOf('path=') = 0 || href.indexOf('modurl=0') >= 0) { result = true; } } return result; } function tryAuthOwaSD() { if ((window.owaSD.status == 440 || window.owaSD.status == 401) && !isPalEnabled()) { postBootTrace("AuthRedirect"); trackRedirectToAuth(); redirect('authRedirect', 'true'); return false; } return true; } function completeOwaSD() { window.owaSDdidHandlerExecute = true; window.owaSDReceivedTime = (new Date()).toString(); window.owaSDReceivedTimeStamp = ((new Date()) - window.dateZero); if (window.owaSDConsumable && !window.owaSDConsumed) { owastart(); } } function onUSRPendingComplete(e) { window.owaSDState.usrPending--; if (e && e.target && e.target.src) { parseEndTimes[getFileName(e.target.src)] = ((new Date()) - window.dateZero); } if (window.owaSDState.usrPending == 0 && window.startUpOwa) { window.startUpOwa(); } } function onUSRPendingError(e) { var errMsg = "Failed to load script: "; if (e && e.target && e.target.src) { errMsg += e.target.src; } handleBootError2("USRLoadError", errMsg); } function tryConsumeUSR() { if (window.owaSDState.usrConsumable && window.owaSDState.usrReceived && !window.owaSDState.usrConsumed) { window.owaSDState.usrConsumed = true; eval(window.owaSDState.usr); setCompositeUsrTime(); loadStyles(styleResources); onUSRPendingComplete(); } } function getSDCompositeErr() { var errorInfo = ""; var sdErrorHeader = "Content-Name: SdError\r\n\r\n"; var errorStartIndex = window.owaSD.responseText.indexOf(sdErrorHeader); if (errorStartIndex >= 0) { var errorEndIndex = window.owaSD.responseText.indexOf("SdErrorEnd", errorStartIndex); if (errorEndIndex > 0) { errorInfo = window.owaSD.responseText.substring(errorStartIndex + sdErrorHeader.length, errorEndIndex); } else { errorInfo = window.owaSD.responseText.substring(errorStartIndex + sdErrorHeader.length); } } return errorInfo; } function tryReceiveUSR() { if (window.owaSDState.usrReceived) { return true; } var result = false; if (window.owaSD.readyState == 3 || window.owaSD.readyState == 4) { if (window.owaSD.responseText) { var match = window.owaSD.responseText.match(/^SESSION DATA\r\nVersion: 1\r\n\r\nContent-Name: UserSpecificResources\r\nContent-Size: (\d+)\r\n\r\n/); if (match) { var usrBegin = match[0].length; var usrEnd = usrBegin + parseInt(match[1]); if (window.owaSD.responseText.length >= usrEnd) { window.owaSDState.usr = window.owaSD.responseText.substring(usrBegin, usrEnd); window.owaSDState.sdBegin = usrEnd; result = window.owaSDState.usrReceived = true; tryConsumeUSR(); } } } } if (!result && window.owaSD.readyState == 4) { var errMsg = window.owaSD.getResponseHeader("X-Auth-Error"); var errType = "USRCompositeAuthErr"; if (!errMsg) { errMsg = window.owaSD.getResponseHeader("X-OWA-Error"); errType = "USRCompositeServerErr"; } if (!errMsg) { var errorInfo = getSDCompositeErr(); if (errorInfo) { errMsg = errorInfo; errType = "USRCompositeBeginErr"; } } handleBootError2( errType, errMsg, window.owaSD.getResponseHeader("X-OWA-Version"), window.owaSD.getResponseHeader('X-CalculatedBETarget')); } return result; } function tryReceiveSD() { if (window.owaSDState.sdReceived) { return true; } var result = false; var retrySDRequest = false; var errorInfo = ""; if (window.owaSD.readyState == 4) { errorInfo = getSDCompositeErr(); var sdHeader = "Content-Name: SessionData\r\n\r\n"; var retrySDRequestCode = "RetryCrrRequest"; if (errorInfo) { if (!this.owaSD.retryAttempt && errorInfo.indexOf(retrySDRequestCode) >= 0) { retrySDRequest = true; } } else if (window.owaSD.responseText.indexOf(sdHeader, window.owaSDState.sdBegin) == window.owaSDState.sdBegin) { window.owaSDState.data = window.owaSD.responseText.substring(window.owaSDState.sdBegin + sdHeader.length); result = window.owaSDState.sdReceived = true; } } if (retrySDRequest) { this.owaSD.onreadystatechange = null; this.owaSD = null; sendOwaSDRequest(true); } else if (!result && window.owaSD.readyState == 4) { handleBootError2( "SDCompositeError", errorInfo, window.owaSD.getResponseHeader("X-OWA-Version"), window.owaSD.getResponseHeader('X-CalculatedBETarget')); } return result; } var LT_ANY="Any";var LT_MOUSE="Mouse";var LT_TNARROW="TNarrow";var LT_TWIDE="TWide";var layout,bootTraceTimerId,cdnEndPointName,lcver,readingPaneOn,parseEndTimes={},owaRedirecting;function getQueryStr(){return window.location.search?window.location.search:""}function isPalEnabled(){var n=getQueryStr();return document.cookie.indexOf("PALEnabled")!=-1||n.indexOf("palenabled=1")!=-1}function validateLocalStorage(){if(isLocalStorageEnabled==undefined)try{if(window.localStorage!=null){window.localStorage.dummy="dummy";window.localStorage.removeItem("dummy");isLocalStorageEnabled=!0}else isLocalStorageEnabled=!1}catch(n){isLocalStorageEnabled=!1}return isLocalStorageEnabled}var isLocalStorageEnabled=validateLocalStorage();function getLocalStorageValue(n){return validateLocalStorage()?window.localStorage[n]:undefined}function setLocalStorageValue(n,t){if(!validateLocalStorage())return undefined;try{var i=window.localStorage[n];window.localStorage[n]=t;return i}catch(r){window.localStorage.clear();return undefined}}function deleteLocalStorageValue(n){if(!validateLocalStorage())return undefined;var t=window.localStorage[n];t&&delete window.localStorage[n];return t}function getCookie(n){var t=new RegExp("(?:^|; )"+encodeURIComponent(n)+"=([^;]*)").exec(document.cookie);return t?decodeURIComponent(t[1]):null}function eraseCookie(n,t){document.cookie=n+"=; expires=Thu, 01 Jan 1970 00:00:01 GMT; domain="+t+"; path=/"}function loadSlabSources(n,t,i){n!==""&&n[n.length-1]!="/"&&(n+="/");for(var r=0;r")}}function userEnabledOffline(){if(isPalEnabled())return!0;else if(isLocalStorageEnabled){var n=window.localStorage.userEnabledOffline||"";return n!=="false"&&n!=null&&n!=""}}function updateStatusText(n,t){if(!isPopOut){var i=document.getElementById("statusText");if(i){i.className=n;window.setTimeout(function(){i.className==n&&(i.className=n+"Delay")},t*1e3)}}}function appendQueryWhenBootError(n){var t=getQueryStr();(t.indexOf("aC=1")>=0||t.indexOf("bFS=1")>=0)&&n.indexOf("?")==-1&&(n=n+"?bO=1");return n}function includeScripts(n,t,i,r,u,f){for(var s=0;s");document.write("parseEndTimes['"+getFileName(h)+"'] = ((new Date()) - window.dateZero);")}}}function addCssLink(n){var i=document.getElementsByTagName("head")[0];var t=document.createElement("link");t.setAttribute("href",n);t.setAttribute("rel","stylesheet");t.setAttribute("type","text/css");i.appendChild(t)}function includeStyles(n,t,i){var o=window.matchMedia&&window.matchMedia("screen and (-webkit-min-device-pixel-ratio: 2)")&&window.matchMedia("screen and (-webkit-min-device-pixel-ratio: 2)").matches;n!==""&&n[n.length-1]!="/"&&(n+="/");for(var s=i.length,f=0;ft&&(n=n.substring(0,t));return n}function handleBootError2(n,t,i,r){try{if(owaRedirecting)return;var f=getQueryStr();if(appCachedPage&&(n=="ScriptLoadError"||n=="ClientError")&&!isPalEnabled()){postBootTrace(n,t);var c=userEnabledOffline()?"10":"2";trackRebootReason(c);redirect("aC","1")}else if(!appCachedPage||userEnabledOffline()||isPalEnabled())if(f.indexOf("bO=1")!=-1||f.indexOf("aC=1")!=-1||f.indexOf("bFS=1")!=-1||n=="ScriptLoadError"||n=="ClientError"||n=="USRLoadError"||userEnabledOffline()||isPalEnabled())if(f.indexOf("bO=1")!=-1||f.indexOf("bFS=1")!=-1||n!="ScriptLoadError"&&n!="ClientError"&&n!="USRLoadError"||userEnabledOffline()||isPalEnabled()){postBootTrace(n,t);isPopOut&&callPopOutErrorCallback("BootError_"+n);if(!isPalEnabled()&&!userEnabledOffline()&&!suppressErrorRedirect()){if(t){t=encodeURIComponent(t);t=trimToLength(t,1024)}var u={};u.MDB=window.traceMguid;u.tg=window.traceTid;u.nId=window.owaUserNetId;u.mbx=window.owaMbxGuid;u.cver=window.sver;u.caTy=window.cacheType;u.owaError=t;u.prem=window.isPremExoMbx;if(window.owaSD){u.fe=window.owaSD.getResponseHeader("X-FEServer");u.be=window.owaSD.getResponseHeader("X-BEServer");u.cbe=window.owaSD.getResponseHeader("X-CalculatedBETarget");u.dag=window.owaSD.getResponseHeader("X-OWA-DAG");u.forest=window.owaSD.getResponseHeader("X-OWA-Forest");u.reqid=window.owaSD.getResponseHeader("request-id");u.owaVer=window.owaSD.getResponseHeader("X-OWA-Version");u.httpCode=window.owaSD.status;u.te=window.owaSD.getResponseHeader("X-MSEdge-Ref")?"1":"0";u.msg=window.owaSD.getResponseHeader("X-OWAErrorMessageID");u.inex=window.owaSD.getResponseHeader("X-InnerException")}u.dag=u.dag||window.cachedDagName;u.forest=u.forest||window.cachedForestName;var e=encodeURIComponent(window.location.href);e=trimToLength(e,200);u.refurl=e;var s="?et="+n;for(var o in u)u[o]&&(s+="&"+o+"="+u[o]);redirectToUrl("/owa/auth/errorfe.aspx"+s)}}else{postBootTrace(n,t);trackRebootReason("9");redirect("bFS","1")}else{postBootTrace(n,t);trackRebootReason("8");redirect("bO","1")}else{postBootTrace(n,t);trackRebootReason("1");redirect("bO","1")}}catch(h){if(!suppressErrorRedirect()){var l=h.message+";"+h.stack;redirectToUrl("/owa/auth/errorfe.aspx?owaError=Unknown;handle boot error failed;"+l+"&owaVer="+i+"&be="+r)}}}function onScriptLoadError2(n){var t="Failed to load script: ";n&&(t+=n.src);handleBootError2("ScriptLoadError",t,null)}function htmlDec(n){var t=document.createElement("div");t.innerHTML=n;return t.innerText||t.textContent}function loadScripts(n,t,i,r,u){for(var f=0;f=0)return n;n=r[0].indexOf("?")>=0?r[0]+"&"+u+f:r[0]+"?"+u+f;return n}function isMajorVersionChanged(n,t){if(n==null||t==null)return!0;var r=n.split(".");var u=t.split(".");if(r.length0){for(var w=0;w0&&(e="&"+perfData[1]+e);perfData[2].length>0&&(e=perfData[2]+e);b.send(e);if(nt){r=r+(u?"&refUrl="+u:"")+(f?"&edgeRef="+f:"")+(t?"&Err="+encodeURIComponent(t):"");r=trimToLength(r,4096);var k=new XMLHttpRequest;k.open("GET",nt+r);k.timeout=5e3;k.send()}if(window.ariaLoggingEnabled){microsoft.applications.telemetry.LogManager.initialize(window.ariaTenantToken);defaultLogger=new microsoft.applications.telemetry.Logger;var i=new microsoft.applications.telemetry.EventProperties;var ut=!1;if(n.indexOf("success")=0&&u[i].length==16){var h=u[i].substring(3,u[i].length);r.push("authTS="+h)}}eraseCookie("wlidperf",".live.com");var o=[];getResourceEntries(t,o);var s="";isLocalStorageEnabled&&(s=window.localStorage.OwaStartupPerfTrace?window.localStorage.OwaStartupPerfTrace:"");return[r.join("&"),o.join("&"),s]}var renderStartTime=0;function setStartRenderTime(){renderStartTime=new Date-window.dateZero}var compositeUsrTime=0;function setCompositeUsrTime(){compositeUsrTime=new Date-window.dateZero}function getPerformanceTimings(n,t){var i=[],r=window.scriptStart;if(n){r=n.navigationStart;if(n.unloadEventStart){i.push("uES");i.push(n.unloadEventStart-r|0)}if(n.unloadEventEnd){i.push("uEE");i.push(n.unloadEventEnd-r|0)}r=fillTimingValues(n,r,i);if(window.owaSDReceivedTimeStamp){i.push("sdR");i.push(window.owaSDReceivedTimeStamp-r|0)}if(parseEndTimes.allBootScripts){i.push("pEab");i.push(parseEndTimes.allBootScripts-r|0)}if(parseEndTimes.allDone){i.push("pE");i.push(parseEndTimes.allDone-r|0)}if(renderStartTime){i.push("rSt");i.push(renderStartTime-r|0)}if(compositeUsrTime){i.push("cUsr");i.push(compositeUsrTime-r|0)}i.push("now");i.push(t-r)}if(window.scriptStart){i.push("nowNoTim");i.push(t-window.scriptStart|0);if(renderStartTime){i.push("rStNoTim");i.push(renderStartTime-window.scriptStart|0)}}return i.join(",")}function getResourceEntries(n,t){if(!n||!n.getEntries&&!n.webkitGetEntries)return null;for(var u=n.getEntries?n.getEntries():n.webkitGetEntries(),r=0;r0||i.name.lastIndexOf(".ashx")>0||i.name.lastIndexOf(".png")>0||i.name.lastIndexOf(".gif")>0||i.name.lastIndexOf(".css")>0||i.name.lastIndexOf(".eot")>0||i.name.lastIndexOf(".ttf")>0||i.name.lastIndexOf(".htm")>0||i.name.lastIndexOf(".woff")>0){var f="Res="+getFileName(i.name)+",tim="+getResourceTiming(i);var e=getFileName(i.name);parseEndTimes[e]&&(f+=",pE,"+(parseEndTimes[e]-n.timing.fetchStart));t.push(f)}}}function getResourceTiming(n){var t=[];var i=n.startTime|0;t.push("st");t.push(i);fillTimingValues(n,i,t);return t.join(",")}function getFileName(n){var u=Math.max(n.lastIndexOf("/"),n.lastIndexOf("\\"));var i=n.indexOf("?");var r=n.indexOf("#");var t=-1;t=i==-1||r==-1?Math.max(i,r):Math.min(i,r);t=t==-1?n.length:t;return n.substring(u+1,t)}function fillTimingValues(n,t,i){if(n.workerStart){i.push("wktS");i.push(n.workerStart-t|0)}if(n.redirectStart){i.push("reds");i.push(n.redirectStart-t|0)}if(n.redirectEnd){i.push("redE");i.push(n.redirectEnd-t|0)}if(n.fetchStart){i.push("fS");i.push(n.fetchStart-t|0);t=n.fetchStart}if(n.domainLookupStart){i.push("dLS");i.push(n.domainLookupStart-t|0)}if(n.domainLookupEnd){i.push("dLE");i.push(n.domainLookupEnd-t|0)}if(n.connectStart){i.push("cS");i.push(n.connectStart-t|0)}if(n.connectEnd){i.push("cE");i.push(n.connectEnd-t|0)}if(n.secureConnectionStart){i.push("sCS");i.push(n.secureConnectionStart-t|0)}if(n.requestStart){i.push("reqS");i.push(n.requestStart-t|0)}if(n.responseStart){i.push("resS");i.push(n.responseStart-t|0)}if(n.responseEnd){i.push("resE");i.push(n.responseEnd-t|0)}if(n.domLoading){i.push("domL");i.push(n.domLoading-t|0)}if(n.domContentLoadedEventStart){i.push("domCLES");i.push(n.domContentLoadedEventStart-t|0)}if(n.domContentLoadedEventEnd){i.push("domCLEE");i.push(n.domContentLoadedEventEnd-t|0)}if(n.domComplete){i.push("domC");i.push(n.domComplete-t|0)}if(n.loadEventStart){i.push("lES");i.push(n.loadEventStart-t|0)}if(n.loadEventEnd){i.push("lEE");i.push(n.loadEventEnd-t|0)}return t}function callPopOutErrorCallback(n){try{if(window.opener&&window.opener.popOutErrorCallbacks){var t=getParameterByName("wid");window.opener.popOutErrorCallbacks[t](n)}cleanupErrorCallback()}catch(i){}}function cleanupErrorCallback(){try{detachUnloadEvent();if(window.opener&&window.opener.popOutErrorCallbacks){var n=getParameterByName("wid");window.opener.popOutErrorCallbacks[n]=null}}catch(t){}}function getParameterByName(n){var i=new RegExp("[\\#&]"+n+"=([^&#]*)");var t=i.exec(location.hash);return t==null?null:decodeURIComponent(t[1])}function detachUnloadEvent(){try{onunloadbeforeboot&&(window.detachEvent?window.detachEvent("onunload",onunloadbeforeboot):window.removeEventListener("unload",onunloadbeforeboot,!1))}catch(n){}}var pbar={};pbar.startTime=Date.now();pbar.s={plt:6500,maxTime:2e4,sLoad:.05,pltLSKey:"AvgPLT"};pbar.caculatecubic=function(n){var t=n/pbar.s.maxTime;t>1&&(t=1);return"cubic-bezier("+t+",.9,"+t+",.9)"};pbar.startScriptLoad=function(){try{var t=getLocalStorageValue(pbar.s.pltLSKey);t&&(pbar.s.plt=parseInt(t));var n=document.getElementById("progressBar");if(n){var i=pbar.caculatecubic(pbar.s.plt);n.style.WebkitAnimationTimingFunction=i;n.style.animationTimingFunction=i}}catch(r){}};pbar.scriptLoadCompleted=function(){try{var n=document.getElementById("progressBar");var t=(Date.now()-pbar.startTime)/pbar.s.sLoad;if(t // // // Zavod za turizem Šaleške doline je v okviru Javnega razpisa za sofinanciranje aktivnosti promocije turistične ponudbe vodilnih destinacij v Sloveniji v letu 2021 pridobil skoraj 20 tisoč evrov za izvedbo intenzivne digitalne promocijske kampanje s ciljem povečanja prihodov in nočitev v Šaleški dolini.  V sodelovanju s strokovnjaki s področja digitalnega marketinga in z različnimi mediji bo Zavod za turizem Šaleške doline izvedel promocijsko kampanjo s poudarkom na doživetjih destinacije. Glavne komunikacijske teme vodilne destinacije Šaleška dolina bodo: zdravje in dobro počutje, kulinarika ter turizem na podeželju. V ospredju bo promocija destinacije kot varne, zdrave in dostopne destinacije. Skozi promocijo želimo obiskovalce spodbuditi h koriščenju turističnih bonov v našem okolju. Kampanja bo potekala na slovenskem in bližnjih tujih trgih predvidoma do novembra 2021.   Šaleška dolina uspešno sledi viziji Slovenije kot zelene, butične destinacije za 5-zvezdična doživetja. Zavod za turizem Šaleške doline v ospredje postavlja trajnostni razvoj turizma, kar potrjujejo v preteklem mesecu pridobljeni potovalni standardi Green&Safe ter znak Safe Travelers. Velenje ima tudi znak Slovenia Green Destination Silver.