Login
(not required)
Preferences
Did you know...
Streams heard since April 2006:
13,870,626
view source - https://www.hhawaiimedia.com/about
<!doctype html > <html xmlns="http://www.w3.org/1999/xhtml" lang="en" class=""> <head> <meta charset="utf-8"> <script type="text/javascript"> window._currentDevice = 'tablet'; window.Parameters = window.Parameters || { HomeUrl: 'https://www.hhawaiimedia.com/', AccountUUID: '2ee10e632e8f40eab8a4d4d938aded6b', SystemID: 'US_DIRECT_PRODUCTION', SiteAlias: '611a429b', SiteType: atob('RFVEQU9ORQ=='), PublicationDate: 'Thu Jun 19 22:56:23 UTC 2025', ExternalUid: '0e8sngyx1bic51tn', IsSiteMultilingual: false, InitialPostAlias: '', InitialPostPageUuid: '', InitialDynamicItem: '', DynamicPageInfo: { isDynamicPage: false, base64JsonRowData: 'null', }, InitialPageAlias: 'about', InitialPageUuid: 'ecfbdc1d0ca0454f9fcfc14a57de02e4', InitialPageId: '37220491', InitialEncodedPageAlias: 'YWJvdXQ=', InitialHeaderUuid: 'e9f69ced06f64d15963d631bfbfa25a2', CurrentPageUrl: '', IsCurrentHomePage: false, AllowAjax: false, AfterAjaxCommand: null, HomeLinkText: 'Back To Home', UseGalleryModule: false, CurrentThemeName: 'Layout Theme', ThemeVersion: '500000', DefaultPageAlias: '', RemoveDID: true, WidgetStyleID: null, IsHeaderFixed: false, IsHeaderSkinny: false, IsBfs: true, StorePageAlias: 'null', StorePagesUrls: 'e30=', IsNewStore: 'false', StorePath: '', StoreId: 'null', StoreVersion: 0, StoreBaseUrl: '', StoreCleanUrl: true, StoreDisableScrolling: true, IsStoreSuspended: false, HasCustomDomain: true, SimpleSite: false, showCookieNotification: false, cookiesNotificationMarkup: 'null', translatedPageUrl: '', isFastMigrationSite: false, sidebarPosition: 'NA', currentLanguage: 'en', currentLocale: 'en', NavItems: '{}', errors: { general: 'There was an error connecting to the page.<br/> Make sure you are not offline.', password: 'Incorrect name/password combination', tryAgain: 'Try again' }, NavigationAreaParams: { ShowBackToHomeOnInnerPages: true, NavbarSize: -2, NavbarLiveHomePage: 'https://www.hhawaiimedia.com/', BlockContainerSelector: '.dmBody', NavbarSelector: '#dmNav:has(a)', SubNavbarSelector: '#subnav_main' }, hasCustomCode: false, planID: '1280', customTemplateId: 'null', siteTemplateId: 'null', productId: 'DM_DIRECT', disableTracking: false, pageType: 'FROM_SCRATCH', isRuntimeServer: true, isInEditor: false, hasNativeStore: false, defaultLang: 'en', hamburgerMigration: null, isFlexSite : false }; window.Parameters.LayoutID = {}; window.Parameters.LayoutID[window._currentDevice] = 6; window.Parameters.LayoutVariationID = {}; window.Parameters.LayoutVariationID[window._currentDevice] = 5; </script> <!-- Injecting site-wide to the head --> <!-- End Injecting site-wide to the head --> <!-- Inject secured cdn script --> <!-- ========= Meta Tags ========= --> <script> try { if ( navigator.serviceWorker && navigator.serviceWorker.getRegistrations && location.protocol === 'https:' ) { // remove all service workers navigator.serviceWorker .getRegistrations() .then(function (registrations) { if (registrations && registrations.length) { console.log('unregistering service workers'); registrations.forEach(function (registration) { registration.unregister(); }); } }); // clear caches if (caches) { caches.keys().then(function (keyList) { if (keyList && keyList.length) { console.log('deleting caches'); keyList.forEach(function (key) { if (key && key.indexOf('druntime') === 0) { caches.delete(key); } }); } }); } } } catch (err) { // not a secured location } </script> <link rel="canonical" href="https://www.hhawaiimedia.com/about"> <meta id="view" name="viewport" content="width=960px"> <meta name="apple-mobile-web-app-capable" content="yes"> <!--Add favorites icons--> <link rel="icon" type="image/x-icon" href="https://irp.cdn-website.com/611a429b/site_favicon_16_1674830344180.ico"/> <!-- End favorite icons --> <link rel="preconnect" href="https://lirp.cdn-website.com/"/> <!-- render the required CSS and JS in the head section --> <script id='d-js-dmapi'> window.SystemID = 'US_DIRECT_PRODUCTION'; if (!window.dmAPI) { window.dmAPI = { registerExternalRuntimeComponent: function () { }, getCurrentDeviceType: function () { return window._currentDevice; }, runOnReady: (ns, fn) => { const safeFn = dmAPI.toSafeFn(fn); ns = ns || 'global_' + Math.random().toString(36).slice(2, 11); const eventName = 'afterAjax.' + ns; if (document.readyState === 'complete') { $.DM.events.off(eventName).on(eventName, safeFn); setTimeout(function () { safeFn({ isAjax: false, }); }, 0); } else { window?.waitForDeferred?.('dmAjax', () => { $.DM.events.off(eventName).on(eventName, safeFn); safeFn({ isAjax: false, }); }); } }, toSafeFn: (fn) => { if (fn?.safe) { return fn; } const safeFn = function (...args) { try { return fn?.apply(null, args); } catch (e) { console.log('function failed ' + e.message); } }; safeFn.safe = true; return safeFn; } }; } if (!window.requestIdleCallback) { window.requestIdleCallback = function (fn) { setTimeout(fn, 0); } } </script> <!-- loadCSS function header.jsp--> <script id="d-js-load-css"> /** * There are a few <link> tags with CSS resource in them that are preloaded in the page * in each of those there is a "onload" handler which invokes the loadCSS callback * defined here. * We are monitoring 3 main CSS files - the runtime, the global and the page. * When each load we check to see if we can append them all in a batch. If threre * is no page css (which may happen on inner pages) then we do not wait for it */ (function () { let cssLinks = {}; function loadCssLink(link) { link.onload = null; link.rel = "stylesheet"; link.type = "text/css"; } function checkCss() { const pageCssLink = document.querySelector("[id*='CssLink']"); const widgetCssLink = document.querySelector("[id*='widgetCSS']"); if (cssLinks && cssLinks.runtime && cssLinks.global && (!pageCssLink || cssLinks.page) && (!widgetCssLink || cssLinks.widget)) { const storedRuntimeCssLink = cssLinks.runtime; const storedPageCssLink = cssLinks.page; const storedGlobalCssLink = cssLinks.global; const storedWidgetCssLink = cssLinks.widget; storedGlobalCssLink.disabled = true; loadCssLink(storedGlobalCssLink); if (storedPageCssLink) { storedPageCssLink.disabled = true; loadCssLink(storedPageCssLink); } if(storedWidgetCssLink) { storedWidgetCssLink.disabled = true; loadCssLink(storedWidgetCssLink); } storedRuntimeCssLink.disabled = true; loadCssLink(storedRuntimeCssLink); requestAnimationFrame(() => { setTimeout(() => { storedRuntimeCssLink.disabled = false; storedGlobalCssLink.disabled = false; if (storedPageCssLink) { storedPageCssLink.disabled = false; } if (storedWidgetCssLink) { storedWidgetCssLink.disabled = false; } // (SUP-4179) Clear the accumulated cssLinks only when we're // sure that the document has finished loading and the document // has been parsed. if(document.readyState === 'interactive') { cssLinks = null; } }, 0); }); } } function loadCSS(link) { try { var urlParams = new URLSearchParams(window.location.search); var noCSS = !!urlParams.get("nocss"); var cssTimeout = urlParams.get("cssTimeout") || 0; if (noCSS) { return; } if (link.href && link.href.includes("d-css-runtime")) { cssLinks.runtime = link; checkCss(); } else if (link.id === "siteGlobalCss") { cssLinks.global = link; checkCss(); } else if (link.id && link.id.includes("CssLink")) { cssLinks.page = link; checkCss(); } else if (link.id && link.id.includes("widgetCSS")) { cssLinks.widget = link; checkCss(); } else { requestIdleCallback(function () { window.setTimeout(function () { loadCssLink(link); }, parseInt(cssTimeout, 10)); }); } } catch (e) { throw e } } window.loadCSS = window.loadCSS || loadCSS; })(); </script> <script data-role="deferred-init" type="text/javascript"> /* usage: window.getDeferred(<deferred name>).resolve() or window.getDeferred(<deferred name>).promise.then(...)*/ function Def() { this.promise = new Promise((function (a, b) { this.resolve = a, this.reject = b }).bind(this)) } const defs = {}; window.getDeferred = function (a) { return null == defs[a] && (defs[a] = new Def), defs[a] } window.waitForDeferred = function (b, a, c) { let d = window?.getDeferred?.(b); d ? d.promise.then(a) : c && ["complete", "interactive"].includes(document.readyState) ? setTimeout(a, 1) : c ? document.addEventListener("DOMContentLoaded", a) : console.error(`Deferred does not exist`); }; </script> <style id="forceCssIncludes"> /* This file is auto-generated from a `scss` file with the same name */ .videobgwrapper{overflow:hidden;position:absolute;z-index:0;width:100%;height:100%;top:0;left:0;pointer-events:none;border-radius:inherit}.videobgframe{position:absolute;width:101%;height:100%;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);object-fit:fill}#dm video.videobgframe{margin:0}@media (max-width:767px){.dmRoot .dmPhotoGallery.newPhotoGallery:not(.photo-gallery-done){min-height:80vh}}@media (min-width:1025px){.dmRoot .dmPhotoGallery.newPhotoGallery:not(.photo-gallery-done){min-height:45vh}}@media (min-width:768px) and (max-width:1024px){.responsiveTablet .dmPhotoGallery.newPhotoGallery:not(.photo-gallery-done){min-height:45vh}}#dm [data-show-on-page-only]{display:none!important}#dmRoot div.stickyHeaderFix div.site_content{margin-top:0!important}#dmRoot div.stickyHeaderFix div.hamburger-header-container{position:relative} </style> <style id="cssVariables" type="text/css"> </style> <!-- Google Fonts Include --> <!-- loadCSS function fonts.jsp--> <link type="text/css" rel="stylesheet" href="https://irp.cdn-website.com/fonts/css2?family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Creepster:ital,wght@0,400&family=Alfa+Slab+One:ital,wght@0,400&family=Creepster:ital,wght@0,400&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Amaranth:ital,wght@0,400;0,700;1,400;1,700&family=Lobster:ital,wght@0,400&family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Racing+Sans+One:ital,wght@0,400&family=Oswald:ital,wght@0,200..700;1,200..700&family=Alike:ital,wght@0,400&family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&family=Eater:ital,wght@0,400&family=Abril+Fatface:ital,wght@0,400&subset=latin-ext&display=swap" /> <!-- RT CSS Include d-css-runtime-tablet-one-package-structured-global--> <link rel="stylesheet" type="text/css" href="https://static.cdn-website.com/mnlt/production/5680/_dm/s/rt/dist/css/d-css-runtime-tablet-one-package-structured-global.min.css" /> <!-- End of RT CSS Include --> <link type="text/css" rel="stylesheet" href="https://irp.cdn-website.com/WIDGET_CSS/72f0402e21a0112e79986026d10462fb.css" id="widgetCSS" /> <!-- Support `img` size attributes --> <style>img[width][height] { height: auto; }</style> <!-- Support showing sticky element on page only --> <style> body[data-page-alias="about"] #dm [data-show-on-page-only="about"] { display: block !important; } </style> <!-- This is populated in Ajax navigation --> <style id="pageAdditionalWidgetsCss" type="text/css"> </style> <!-- Site CSS --> <link type="text/css" rel="stylesheet" href="https://irp.cdn-website.com/611a429b/files/611a429b_2.min.css?v=277" id="siteGlobalCss" /> <style id="customWidgetStyle" type="text/css"> </style> <style id="innerPagesStyle" type="text/css"> </style> <style id="additionalGlobalCss" type="text/css" > </style> <style id="pagestyle" type="text/css"> *#dm *.dmBody a.u_1058255823 span.icon { color:rgba(254,254,254,1) !important; fill:rgba(254,254,254,1) !important; } *#dm *.dmBody a.u_1058255823 { border-radius:0px !important; -moz-border-radius:0px !important; -webkit-border-radius:0px !important; background-color:rgba(0,6,152,1) !important; } *#dm *.dmBody div.u_1506041346 { background-color:rgba(0,6,152,1) !important; background-image:none !important; } *#dm *.dmBody div.u_1354677775 { background-color:rgba(0,6,152,1) !important; } *#dm *.dmBody div.u_1493576749 { background-repeat:no-repeat !important; background-image:url(https://lirp.cdn-website.com/md/unsplash/dms3rep/multi/opt/photo-1461784121038-f088ca1e7714-1280w.jpg) !important; }*#dm *.dmBody div.u_1297141656 { background-color:rgba(167,163,163,1) !important; } *#dm *.dmBody *.u_1559747116 { display:block !important; } *#dm *.dmBody *.u_1067002295 { display:none !important; } *#dm *.dmBody *.u_1517651588 { display:block !important; } *#dm *.dmBody *.u_1783196516 { display:none !important; } *#dm *.dmBody *.u_1937485836 { display:block !important; } *#dm *.dmBody *.u_1136908926 { display:none !important; } *#dm *.dmBody div.u_1890955777 .caption-container .caption-title { color:rgba(255,4,23,1) !important; } *#dm *.dmBody *.u_1179780975 { display:block !important; } *#dm *.dmBody *.u_1113565778 { display:none !important; } *#dm *.dmBody *.u_1890955777 .photoGalleryThumbs .image-container a { background-size:cover !important; } *#dm *.dmBody *.u_1044521798 { display:block !important; } *#dm *.dmBody *.u_1910397444 { display:none !important; } *#dm *.dmBody *.u_1115795436 { display:block !important; } *#dm *.dmBody *.u_1442537393 { display:none !important; } </style> <style id="pagestyleDevice" type="text/css"> *#dm *.dmBody div.u_1392353340 { display:block !important; float:none !important; top:0px !important; left:0 !important; width:100% !important; position:relative !important; height:auto !important; padding-top:0px !important; padding-left:0px !important; padding-bottom:0px !important; margin-right:auto !important; margin-left:auto !important; max-width:100% !important; margin-top:0px !important; margin-bottom:0px !important; padding-right:0px !important; min-width:0 !important; text-align:center !important; } *#dm *.dmBody h3.u_1788211753 { float:none !important; top:0px !important; left:0px !important; width:875px !important; position:relative !important; height:auto !important; padding-top:0px !important; padding-left:0px !important; padding-bottom:0px !important; margin-right:0px !important; margin-left:0px !important; max-width:calc(100% - 0px) !important; margin-top:0px !important; margin-bottom:8px !important; padding-right:0px !important; min-width:25px !important; text-align:start !important; } *#dm *.dmBody div.u_1506041346 { padding-top:30px !important; padding-bottom:30px !important; } *#dm *.dmBody div.u_1429384871 { display:block !important; float:none !important; top:0px !important; left:0 !important; width:100% !important; position:relative !important; height:auto !important; padding-top:0px !important; padding-left:0px !important; padding-bottom:0px !important; margin-right:auto !important; margin-left:auto !important; max-width:100% !important; margin-top:0px !important; margin-bottom:0px !important; padding-right:0px !important; min-width:0 !important; text-align:center !important; } *#dm *.dmBody h1.u_1788211753 { float:none !important; top:0px !important; left:0px !important; width:918px !important; position:relative !important; height:auto !important; padding-top:0px !important; padding-left:0px !important; padding-bottom:0px !important; margin-right:0px !important; margin-left:0px !important; max-width:calc(100% - 0px) !important; margin-top:0px !important; margin-bottom:10px !important; padding-right:0px !important; min-width:25px !important; text-align:start !important; }*#dm *.dmBody div.u_1493576749 { background-attachment:fixed !important; background-size:cover !important; } *#dm *.dmBody *.u_1890955777 .caption-inner { border-bottom-left-radius:0px !important; -webkit-border-top-right-radius:0px !important; -moz-border-top-right-radius:0px !important; -webkit-border-bottom-right-radius:0px !important; -webkit-border-bottom-left-radius:0px !important; border-top-right-radius:0px !important; -webkit-border-top-left-radius:0px !important; border-radius:0px !important; -moz-border-bottom-right-radius:0px !important; -moz-border-top-left-radius:0px !important; border-top-left-radius:0px !important; -moz-border-radius:0px !important; -moz-border-bottom-left-radius:0px !important; border-bottom-right-radius:0px !important; -webkit-border-radius:0px !important; } *#dm *.dmBody *.u_1890955777 .photoGalleryThumbs { padding:5px !important; } *#dm *.dmBody *.u_1890955777 .layout-container { padding:5px !important; } *#dm *.dmBody *.u_1890955777 .photoGalleryViewAll { padding:0 10px !important; } *#dm *.dmBody *.u_1890955777 .photoGalleryThumbs .image-container a { padding-top:345px !important; } </style> <!-- Flex Sections CSS --> <style id="globalFontSizeStyle" type="text/css"> .font-size-20, .size-20, .size-20 > font { font-size: 20px !important; }.font-size-18, .size-18, .size-18 > font { font-size: 18px !important; } </style> <style id="pageFontSizeStyle" type="text/css"> </style> <style id="hideAnimFix"> .dmDesktopBody:not(.editGrid) [data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) [data-anim-extended] { visibility: hidden; } .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-extended] { visibility: hidden !important; } #dmRoot:not(.editGrid) .flex-element [data-anim-extended] { visibility: hidden; } </style> <style id="fontFallbacks"> @font-face { font-family: "Lobster Two Fallback"; src: local('Arial'); ascent-override: 123.9905%; descent-override: 30.9976%; size-adjust: 80.6513%; line-gap-override: 0%; }@font-face { font-family: "Creepster Fallback"; src: local('Arial'); ascent-override: 104.0992%; descent-override: 23.8338%; size-adjust: 91.3717%; line-gap-override: 0%; }@font-face { font-family: "Alfa Slab One Fallback"; src: local('Arial'); ascent-override: 85.4761%; descent-override: 27.4744%; size-adjust: 121.2035%; line-gap-override: 0%; }@font-face { font-family: "Creepster Fallback"; src: local('Arial'); ascent-override: 104.0992%; descent-override: 23.8338%; size-adjust: 91.3717%; line-gap-override: 0%; }@font-face { font-family: "Roboto Fallback"; src: local('Arial'); ascent-override: 92.6709%; descent-override: 24.3871%; size-adjust: 100.1106%; line-gap-override: 0%; }@font-face { font-family: "Amaranth Fallback"; src: local('Arial'); ascent-override: 100.189%; descent-override: 24.226%; size-adjust: 97.4159%; line-gap-override: 0%; }@font-face { font-family: "Lobster Fallback"; src: local('Arial'); ascent-override: 114.651%; descent-override: 28.6627%; size-adjust: 87.2212%; line-gap-override: 0%; }@font-face { font-family: "Arvo Fallback"; src: local('Arial'); ascent-override: 87.6577%; descent-override: 22.538%; line-gap-override: 2.4498%; size-adjust: 109.6239%; }@font-face { font-family: "Racing Sans One Fallback"; src: local('Arial'); ascent-override: 93.8589%; descent-override: 27.3114%; size-adjust: 103.9858%; line-gap-override: 0%; }@font-face { font-family: "Oswald Fallback"; src: local('Arial'); ascent-override: 145.0682%; descent-override: 35.1423%; size-adjust: 82.2372%; line-gap-override: 0%; }@font-face { font-family: "Alike Fallback"; src: local('Arial'); ascent-override: 96.9517%; descent-override: 26.6026%; size-adjust: 101.4938%; line-gap-override: 0%; }@font-face { font-family: "Eater Fallback"; src: local('Arial'); ascent-override: 100.9625%; descent-override: 32.0168%; size-adjust: 140.1549%; line-gap-override: 0%; }@font-face { font-family: "Abril Fatface Fallback"; src: local('Arial'); ascent-override: 102.6391%; descent-override: 28.2306%; size-adjust: 103.0796%; line-gap-override: 0%; } </style> <!-- End render the required css and JS in the head section --> <meta property="og:type" content="website"> <meta property="og:url" content="https://www.hhawaiimedia.com/about"> <title> FM Radio | Oahu radio stations | H Hawaii Media </title> <meta name="description" content="Our FM radio stations offer the greatest hits and contemporary styles in Oahu, HI. Advertising opportunities available. Call today! 808-342-0065"/> <meta name="google-site-verification" content="Yvt3EQ21E-KvFlQLy30R4FgzQZ0OCI64O3H0hvCvErg"/> <meta name="twitter:card" content="summary"/> <meta name="twitter:title" content="FM Radio | Oahu radio stations | H Hawaii Media"/> <meta name="twitter:description" content="Our FM radio stations offer the greatest hits and contemporary styles in Oahu, HI. Advertising opportunities available. Call today! 808-342-0065"/> <meta property="og:description" content="Our FM radio stations offer the greatest hits and contemporary styles in Oahu, HI. Advertising opportunities available. Call today! 808-342-0065"/> <meta property="og:title" content="FM Radio | Oahu radio stations | H Hawaii Media"/> <!-- SYS- VVNfRElSRUNUX1BST0RVQ1RJT04= --> </head> <body id="dmRoot" data-page-alias="about" class="dmRoot dmTabletBody fix-mobile-scrolling addCanvasBorder dmResellerSite dmLargeBody " style="padding:0;margin:0;" > <!-- ========= Site Content ========= --> <div id="dm" class='dmwr'> <div class="dm_wrapper standard-var5 widgetStyle-3 standard"> <div dmwrapped="true" id="1751347318"> <div dmtemplateid="StandardLayoutMultiD" class="standardHeaderLayout dm-bfs dm-layout-sec dmPageBody d-page-1043049266 inputs-css-clean dmFreeHeader" id="dm-outer-wrapper" data-page-class="1043049266" data-soch="true" data-background-parallax-selector=".dmHomeSection1, .dmSectionParallex"> <div id="dmStyle_outerContainer" class="dmOuter"> <div id="dmStyle_innerContainer" class="dmInner"> <div class="dmLayoutWrapper standard-var dmStandardDesktop"> <div> <div id="iscrollBody"> <div id="site_content"> <div class="dmHeaderContainer fHeader d-header-wrapper"> <div id="hcontainer" class="dmHeader p_hfcontainer u_hcontainer" freeheader="true" headerlayout="144"> <div dm:templateorder="75" class="dmHeaderResp dmHeaderStack" id="1091291806"> <div class="u_1586428210 dmRespRow dmSectionParallaxNew fullBleedChanged fullBleedMode" style="text-align: center;" id="1586428210"> <div class="dmRespColsWrapper" id="1901568000"> <div class="u_1170649596 dmRespCol small-12 large-3 medium-3" id="1170649596"> <span id="1596713241"></span> <div class="u_1980261306 imageWidget align-center" data-widget-type="image" id="1980261306" data-element-type="image"> <a href="/" id="1239043183" file="false"><img src="https://lirp.cdn-website.com/611a429b/dms3rep/multi/opt/h+hawaii+media-1280w.JPG" id="1023943481" class="" data-dm-image-path="https://irp-cdn.multiscreensite.com/611a429b/dms3rep/multi/h+hawaii+media.JPG" alt="H Hawaii Media" onerror="handleImageLoadError(this)"/></a> </div> </div> <div class="u_1243214905 dmRespCol small-12 large-6 medium-6" id="1243214905"> <span id="1878716399"></span> <nav class="u_1735787425 effect-background main-navigation unifiednav dmLinksMenu" role="navigation" layout-main="horizontal_nav_layout_7" layout-sub="submenu_horizontal_1" data-show-vertical-sub-items="HOVER" id="1735787425" dmle_extension="onelinksmenu" data-element-type="onelinksmenu" wr="true" icon="true" surround="true" adwords="" navigation-id="unifiedNav"> <ul role="menubar" class="unifiednav__container " data-auto="navigation-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/" class="unifiednav__item dmUDNavigationItem_00 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Home " data-auto="page-text-style">Home<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/about" class="unifiednav__item dmNavItemSelected dmUDNavigationItem_02 " target="" data-target-page-alias="" data-auto="selected-page"> <span class="nav-item-text " data-link-text=" Oahu " data-auto="page-text-style">Oahu<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/maui" class="unifiednav__item dmUDNavigationItem_010101666693 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Maui " data-auto="page-text-style">Maui<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/kauai" class="unifiednav__item dmUDNavigationItem_010101415860 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Kauai " data-auto="page-text-style">Kauai<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/stream" class="unifiednav__item dmUDNavigationItem_010101518403 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Stream " data-auto="page-text-style">Stream<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/contact" class="unifiednav__item dmUDNavigationItem_03 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Contact " data-auto="page-text-style">Contact<span class="icon icon-angle-down"></span> </span> </a> </li> </ul> </nav> </div> <div class="u_1435121587 dmRespCol small-12 large-3 medium-3" id="1435121587"> <span id="1923366894"></span> <a class="u_1375582578 default dmDefaultGradient align-center dmCall voipReplacement dmWidget dmNoMark dmWwr" href="tel:808-342-0065" contenteditable="false" onclick=";return dm_gaq_push_event('ClickToCall', 'Call',null,'611a429b', this);" id="1375582578" dmle_extension="clicktocall" data-element-type="clicktocall" data-buttonstyle="FLAT_ROUND_ICON" wr="true" data-display-type="block" icon="true" surround="true" description="CALL GEORGE HOCHMAN TO ADVERTISE" adwords="" icon-name="icon-phone" phone="808-342-0065" text="" image=""> <span class="iconBg" aria-hidden="true"> <span class="icon hasFontIcon icon-phone"></span> </span> <span class="text">CALL GEORGE HOCHMAN TO ADVERTISE</span> </a> <div class="dmRespRow u_1027589474" id="1027589474"> <div class="dmRespColsWrapper" id="1751974290"> <div class="dmRespCol small-12 medium-12 large-12 u_1005161339" id="1005161339"> <a data-display-type="block" class="align-center dmButtonLink dmWidget dmWwr default dmOnlyButton dmDefaultGradient u_1270935203" file="false" href="http://www.hawaiistream.fm" data-element-type="dButtonLinkId" id="1270935203" data-buttonstyle="FLAT_ROUND_ICON" icon-name="dm-icon-music" target="_blank"> <span class="iconBg" aria-hidden="true" id="1867121002"> <span class="icon hasFontIconstar hasFontIcon dm-icon-music" id="1663468870"></span> </span> <span class="text" id="1171884942">STREAM NOW</span> </a> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="dmRespRow dmRespRowStable dmRespRowNoPadding dmPageTitleRow "> <div class="dmRespColsWrapper"> <div class="large-12 dmRespCol"> <div id="innerBar" class="innerBar lineInnerBar dmDisplay_None"> <div class="titleLine display_None"><hr/></div> <!-- Page title is hidden in css for new responsive sites. It is left here only so we don't break old sites. Don't copy it to new layouts --> <div id="pageTitleText"> <div class="innerPageTitle">Oahu</div> </div> <div class="titleLine display_None"><hr/></div> </div> </div> </div> </div> <div dmwrapped="true" id="dmFirstContainer" class="dmBody u_dmStyle_template_about"> <div id="allWrapper" class="allWrapper"><!-- navigation placeholders --> <div id="dm_content" class="dmContent" role="main"> <div dm:templateorder="112" class="dmDefaultRespTmpl mainBorder" id="1043049266"> <div class="innerPageTmplBox dmDefaultPage dmAboutListPage dmRespRowsWrapper" id="1353214437"> <div class="u_1297141656 dmRespRow hide-for-medium hide-for-large" style="text-align: center;" id="1297141656"> <div class="dmRespColsWrapper" id="1350306120"> <div class="dmRespCol small-12 medium-12 large-12" id="1848286512"> <span id="1672596107"></span> <a class="default dmDefaultGradient align-center u_1058255823 dmCall voipReplacement dmWidget dmNoMark dmWwr" href="tel:+18083420065" contenteditable="false" onclick=";return dm_gaq_push_event('ClickToCall', 'Call',null,'611a429b', this);" id="1058255823" dmle_extension="clicktocall" data-element-type="clicktocall" data-buttonstyle="FLAT_ROUND_ICON" wr="true" data-display-type="block" icon="true" surround="true" description="Call Us" adwords="" icon-name="icon-phone" phone="+18083420065" text="" image=""> <span class="iconBg" aria-hidden="true"> <span class="icon hasFontIcon icon-phone"></span> </span> <span class="text">Call Us</span> </a> </div> </div> </div> <div class="dmRespRow dmDefaultListContentRow u_1354677775" id="1354677775"> <div class="dmRespColsWrapper" id="1124999607"> <div class="u_1125865204 small-12 dmRespCol dmTxtCol medium-12 large-12" id="1125865204"> <h1 class="u_1788211753 dmDefaultH3" id="1788211753"><div style="text-align: center;"><span class=" lh-1 "><font style="color: rgb(254, 254, 254);"><span style="font-weight: 400;">Oahu's signature FM stations & advertising opportunities</span></font></span></div></h1> <div class="u_1392353340 dmNewParagraph" id="1392353340"><font style="color: rgb(254, 254, 254);" class="lh-1 font-size-20">H. Hawaii Media encompasses the following great stations and caters to a large selection of listeners. When you are looking to advertise, we can help place your brand to the right audience with ease. Many of our stations are format exclusive and have a built-in audience. Call now to begin your Oahu radio advertisements with us! </font></div></div> </div> </div> <div class="dmRespRow u_1493576749 dmSectionParallaxNew" style="text-align: center;" id="1493576749"> <div class="dmRespColsWrapper" id="1782165668"> <div class="dmRespCol small-12 medium-12 large-12" id="1031534399"> <span id="1913561957"></span> <div class="dmPhotoGallery newPhotoGallery dmPhotoGalleryResp u_1890955777 photo-gallery-done text-layout-bottom captionAlignment-center_center photoGallery" galleryoptionsparams="{thumbnailsPerRow: 3, rowsToShow: 3, imageScaleMethod: true}" data-desktop-layout="square" data-desktop-columns="2" data-element-type="dPhotoGalleryId" data-desktop-text-layout="bottom" id="1890955777" data-placeholder="false" data-rows-to-show="100" data-desktop-caption-alignment="top_left" data-mobile-columns="1"> <div class="dmPhotoGalleryHolder clearfix gallery shadowEffectToChildren gallery4inArow" id="1362986591"></div> <div class="layout-container square"> <div class="photogallery-row " data-index=""> <div class="photogallery-column column-2" data-index="0"> <div index="0" class="photoGalleryThumbs animated " data-index="0"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" aria-label="" data-dm-force-device="mobile" class="u_1663858451" data-image-url="https://irp.cdn-website.com/611a429b/dms3rep/multi/Image20240522170856+%281%29-4aa9d425.jpg" style="background-image: url('https://lirp.cdn-website.com/611a429b/dms3rep/multi/opt/Image20240522170856+%281%29-4aa9d425-640w.jpg');"><img id="1780432103" data-src="https://lirp.cdn-website.com/611a429b/dms3rep/multi/opt/Image20240522170856+%281%29-4aa9d425-1280w.jpg" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1559747116" class="caption-container u_1559747116" style="display:none"> <span class="caption-inner"> <h3 id="1221674858" class="caption-title u_1221674858">KORL 101.1 Classic Hits</h3> <div id="1569566595" class="caption-text u_1569566595"><p class="rteBlock">KORL 101.1 is Oahu's "Classic Hits" Station. KORL 101.1 plays the Greatest Hits from the 70's & the 80's with a formula of Pop, Rock and R&B favorites that delivers a perfect variety catering to baby boomers who grew up listening to these timeless hits. The Music: Michael Jackson, Eagles, Madonna, Elton John, Prince, Earth Wind & Fire, George Michael & More</p></div> <a id="1067002295" class="caption-button dmWidget clearfix u_1067002295" href="" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> <div class="photogallery-column column-2" data-index="1"> <div index="1" class="photoGalleryThumbs animated " data-index="1"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" aria-label="" data-dm-force-device="mobile" class="u_1255048042" data-image-url="https://irp.cdn-website.com/611a429b/dms3rep/multi/Image20241230174649.png" style="background-image: url('https://lirp.cdn-website.com/611a429b/dms3rep/multi/opt/Image20241230174649-640w.png');"><img id="1796027070" data-src="https://lirp.cdn-website.com/611a429b/dms3rep/multi/opt/Image20241230174649-1280w.png" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1517651588" class="caption-container u_1517651588" style="display:none"> <span class="caption-inner"> <h3 id="1229387963" class="caption-title u_1229387963">101.5 K-Rock</h3> <div id="1802737105" class="caption-text u_1802737105"><p class="rteBlock">101.5 KROCK is Oahu's destination for Classic Rock. Our airwaves will be filled with Aerosmith, The Rolling Stones, Boston and Rush to Red Hot Chili Peppers, Metallica, Nirvana and so much more! This station is FORMAT EXCLUSIVE with NO COMPETITION. The Music: Guns N' Roses, Pearl Jam, Led Zeppelin and many more!</p></div> <a id="1783196516" class="caption-button dmWidget clearfix u_1783196516" href="" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> </div> <div class="photogallery-row " data-index=""> <div class="photogallery-column column-2" data-index="2"> <div index="2" class="photoGalleryThumbs animated " data-index="2"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" aria-label="" data-dm-force-device="mobile" class="u_1874080781" data-image-url="https://irp.cdn-website.com/611a429b/dms3rep/multi/Image20240705164249.jpg" style="background-image: url('https://lirp.cdn-website.com/611a429b/dms3rep/multi/opt/Image20240705164249-640w.jpg');"><img id="1847453850" data-src="https://lirp.cdn-website.com/611a429b/dms3rep/multi/opt/Image20240705164249-1280w.jpg" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1937485836" class="caption-container u_1937485836" style="display:none"> <span class="caption-inner"> <h3 id="1030767130" class="caption-title u_1030767130">Retro 97.1</h3> <div id="1823171334" class="caption-text u_1823171334"><p class="rteBlock">Retro 97.1 is Oahu's home for the best rhythm and pop of the 90's and 2000's. If you grew up during that time, you'll hear all your favorite songs that defined your youth and help shape the pop music that we have today. Backstreet Boys, Taylor Swift, TLC, Beyonce, NSYNC, Lady Gaga, Mariah Carey and more!</p></div> <a id="1136908926" class="caption-button dmWidget clearfix u_1136908926" href="" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> <div class="photogallery-column column-2" data-index="3"> <div index="3" class="photoGalleryThumbs animated " data-index="3"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" aria-label="" data-dm-force-device="mobile" class="u_1162416037" data-image-url="https://irp.cdn-website.com/611a429b/dms3rep/multi/Image20241230174942.png" style="background-image: url('https://lirp.cdn-website.com/611a429b/dms3rep/multi/opt/Image20241230174942-640w.png');"><img id="1952869473" data-src="https://lirp.cdn-website.com/611a429b/dms3rep/multi/opt/Image20241230174942-1280w.png" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1179780975" class="caption-container u_1179780975" style="display:none"> <span class="caption-inner"> <h3 id="1839695193" class="caption-title u_1839695193">96.7 The X</h3> <div id="1648180213" class="caption-text u_1648180213"><p class="rteBlock">96.7 THE X is Hawaii's Rock radio station. The station targets Men 18-49 playing music classic rock to today's new rock. </p><p class="rteBlock">Great artist such as Foo Fighters, Greta Van Fleet, Nirvana, The Black Keys, Metallica, Linkin Park and more.</p><p class="rteBlock">96.7 THE X is the choice for younger rockers with it's progressive style and famous guitar solos, 96.7 THE X can also be heard statewide on HAWAIISTREAM.FM</p></div> <a id="1113565778" class="caption-button dmWidget clearfix u_1113565778" href="" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> </div> <div class="photogallery-row " data-index=""> <div class="photogallery-column column-2" data-index="4"> <div index="4" class="photoGalleryThumbs animated " data-index="4"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" aria-label="" data-dm-force-device="mobile" class="u_1348931726" data-image-url="https://irp.cdn-website.com/611a429b/dms3rep/multi/Image20241230175245.png" style="background-image: url('https://lirp.cdn-website.com/611a429b/dms3rep/multi/opt/Image20241230175245-640w.png');"><img id="1094995034" data-src="https://lirp.cdn-website.com/611a429b/dms3rep/multi/opt/Image20241230175245-1280w.png" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1044521798" class="caption-container u_1044521798" style="display:none"> <span class="caption-inner"> <h3 id="1716773790" class="caption-title u_1716773790">Oldies 107.5</h3> <div id="1101604273" class="caption-text u_1101604273"><p class="rteBlock">The greatest music ever recorded, with a spotlight on the greatest hits from the 60’s and 70’s. Everything from the sound of Motown to the British Invasion. Featuring The Beatles, The Beach Boys, Elvis Presley, The Rolling Stones, Buddy Holly, Otis Redding and much more! Programmed and hosted by legendary Rock & Roll Hall of Fame Deejay, Scott Shannon, the True Oldies Channel is not your typical oldies station that plays the same 200 songs on repeat. We’ve got a thousand different songs in our huge oldies library and we try to play them ALL!</p></div> <a id="1910397444" class="caption-button dmWidget clearfix u_1910397444" href="" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> <div class="photogallery-column column-2" data-index="5"> <div index="5" class="photoGalleryThumbs animated " data-index="5"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" aria-label="" data-dm-force-device="mobile" class="u_1459982322" data-image-url="https://irp.cdn-website.com/611a429b/dms3rep/multi/Image20250611160735.png" style="background-image: url('https://lirp.cdn-website.com/611a429b/dms3rep/multi/opt/Image20250611160735-640w.png');"><img id="1221256554" data-src="https://lirp.cdn-website.com/611a429b/dms3rep/multi/opt/Image20250611160735-1280w.png" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1115795436" class="caption-container u_1115795436" style="display:none"> <span class="caption-inner"> <h3 id="1037744433" class="caption-title u_1037744433">Mega 104.7</h3> <div id="1046338178" class="caption-text u_1046338178"><p class="rteBlock">MEGA 104.7 FM is Hawaii’s only commercial Hispanic radio station. With a format exclusively dedicated to Latino music and content. Including “The Shoboy Show” one of the most popular Spanish-language radio shows in the United States. MEGA 104.7 FM delivers a high-energy mix of reggaeton, bachata, and corridos tumbados from chart-topping artists like Bad Bunny, Karol G, Manuel Turizo, Anitta, Pedro Capó, and more.</p></div> <a id="1442537393" class="caption-button dmWidget clearfix u_1442537393" href="" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="u_1506041346 dmRespRow dmReadySection CallForActionTmpl hide-for-small" dm:templateid="CallForAction" id="1506041346"> <div class="dmRespColsWrapper CallForActionSection" id="1077408338"> <div class="dmRespCol small-12 medium-12 large-12" id="1615817305"> <div class="u_1429384871 dmNewParagraph" id="1429384871" style="transition: opacity 1s ease-in-out;"><div><font color="#fefefe"><span style="font-size: 24px;">For advertising information in Oahu, contact <b><span style="font-weight: 700;">George</span></b> <b><span style="font-weight: 700;">Hochman</span></b></span></font></div><div><font color="#fefefe"><span style="font-size: 24px; font-weight: 700;"><span style="text-decoration-line: underline;"><b><span style="font-weight: 700;">808-342-0065</span></b> </span> or email <b>gh</b><b><span>5</span><span style="font-weight: 700;">512@aol.com</span></b></span></font></div></div></div> </div> </div> </div> </div> </div> </div> </div> <div class="dmFooterContainer"> <div id="fcontainer" class="f_hcontainer dmFooter p_hfcontainer"> <div dm:templateorder="14" class="dmFooterResp dmFullFooterResp" id="1126346626"> <div class="dmRespRow dmDividerRow" id="1614350511"> <div class="dmRespColsWrapper" id="1130053955"> <div class="large-12 medium-12 small-12 dmRespCol" id="1118915845"> <div class="dmDividerWrapper clearfix" id="1832192944" data-element-type="dDividerId"><hr class="dmDivider defaultDivider" id="1891314761"/></div> </div> </div> </div> <div class="u_1686473671 dmRespRow hide-for-medium hide-for-large" style="text-align: center;" id="1686473671"> <div class="dmRespColsWrapper" id="1992323602"> <div class="dmRespCol small-12 medium-12 large-12" id="1750868921"> <span id="1544199163"></span> <a class="default dmDefaultGradient align-center u_1147615244 dmCall voipReplacement dmWidget dmNoMark dmWwr" href="tel:+18083420065" contenteditable="false" onclick=";return dm_gaq_push_event('ClickToCall', 'Call',null,'611a429b', this);" id="1147615244" dmle_extension="clicktocall" data-element-type="clicktocall" data-buttonstyle="FLAT_ROUND_ICON" wr="true" data-display-type="block" icon="true" surround="true" description="Advertise with us" adwords="" icon-name="icon-phone" phone="+18083420065" text="" image=""> <span class="iconBg" aria-hidden="true"> <span class="icon hasFontIcon icon-phone"></span> </span> <span class="text">Advertise with us</span> </a> </div> </div> </div> <div class="u_1731030497 dmRespRow" style="text-align: center;" id="1731030497"> <div class="dmRespColsWrapper" id="1434123793"> <div class="dmRespCol small-12 medium-4 large-4" id="1389358927"> <span id="1371133874"></span> <div class="u_1480681646 dmNewParagraph" id="1480681646" style="display: block;"><div><b><font style="color: rgb(254, 254, 254);"><span style="font-weight: 700;" class="font-size-18 lh-1">Oahu</span></font></b></div><div><font color="#fefefe">1164 Bishop Avenue</font></div><div><font style="color: rgb(254, 254, 254);">Suite 1703 Honolulu HI. 96813</font></div><div><font style="color: rgb(254, 254, 254); text-decoration-line: underline;">(808) 342-0065</font></div></div></div> <div class="dmRespCol small-12 medium-4 large-4" id="1759072196"> <div class="dmNewParagraph" id="1052600572" style="transition: opacity 1s ease-in-out;"><div style="text-align: center;"><span style="background-color: rgba(0, 0, 0, 0);"><b><font style="color: rgb(254, 254, 254);"><span style="font-weight: 700;" class="font-size-18 lh-1">Maui</span></font></b></span></div><div style="text-align: center;"><br/></div><div style="text-align: center;"><font style="color: rgb(254, 254, 254); text-decoration-line: underline;">(808) 342-0065</font></div><div><div style="text-align: center;"><br/></div><div style="text-align: center;"><br/></div></div></div> <div class="align-center text-align-center u_1498783648 dmSocialHub gapSpacing" id="1498783648" dmle_extension="social_hub" data-element-type="social_hub" wr="true" networks="" icon="true" surround="true" adwords=""> <div class="socialHubWrapper"> <div class="socialHubInnerDiv "> <a href="mailto:gh5512@aol.com" dm_dont_rewrite_url="true" aria-label="email" onclick="dm_gaq_push_event && dm_gaq_push_event('socialLink', 'click', 'Email')"> <span class="dmSocialEmail dm-social-icons-email oneIcon socialHubIcon style3" aria-hidden="true" data-hover-effect=""></span> </a> </div> </div> </div> </div> <div class="dmRespCol small-12 medium-4 large-4" id="1549477256"> <div class="dmNewParagraph" id="1576463677" style="transition: opacity 1s ease-in-out;"><div style="text-align: center;"><b></b></div><div style="text-align: center;"></div><span><font style="color: rgb(254, 254, 254);"><div style="text-align: center;"><b><span style="font-weight: 700;" class="font-size-18 lh-1">Kauai</span></b></div><div style="font-weight: 400; text-align: center;"><span style="background-color: rgba(0, 0, 0, 0); font-weight: inherit;">4334 Rice Street </span></div><div style="font-weight: 400; text-align: center;">Suite #201 Lihue, HI 96766</div><div style="font-weight: 400; text-align: center;"><span style="text-decoration-line: underline;">(808) 342-0065</span></div><div style="font-weight: 400; text-align: center;"><br/></div></font></span><div style="text-align: center;"></div><div style="text-align: center;"><b></b></div></div></div> </div> </div> <div id="1532624514" dmle_extension="powered_by" data-element-type="powered_by" icon="true" surround="false"></div> <div class="dmRespRow u_1737283879" style="text-align: center;" id="1737283879"> <div class="dmRespColsWrapper" id="1499730143"> <div class="dmRespCol small-12 medium-12 large-12" id="1385099094"> <div class="dmNewParagraph" id="1779787982" style="transition: opacity 1s ease-in-out;"><div style="text-align: center;"><span style="color: rgb(254, 254, 254); font-size: 1em; font-weight: 400;"><a href="https://vivial.net/privacy/" runtime_url="https://vivial.net/privacy/" target="_blank">Privacy Policy</a></span></div></div></div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <!-- Add full CSS and Javascript before the close tag of the body if needed --> <!-- ========= JS Section ========= --> <script> var isWLR = true; window.customWidgetsFunctions = {}; window.customWidgetsStrings = {}; window.collections = {}; window.currentLanguage = "ENGLISH" window.isSitePreview = false; </script> <script type="text/javascript"> var d_version = "production_5680"; var build = "2025-08-03T08_48_31"; window['v' + 'ersion'] = d_version; function buildEditorParent() { window.isMultiScreen = true; window.editorParent = {}; window.previewParent = {}; window.assetsCacheQueryParam = "?version=2025-08-03T08_48_31"; try { var _p = window.parent; if (_p && _p.document && _p.$ && _p.$.dmfw) { window.editorParent = _p; } else if (_p.isSitePreview) { window.previewParent = _p; } } catch (e) { } } buildEditorParent(); </script> <!-- Load jQuery --> <script type="text/javascript" id='d-js-jquery' src="https://static.cdn-website.com/libs/jquery/jquery-3.7.0.min.js"></script> <!-- End Load jQuery --> <!-- Injecting site-wide before scripts --> <!-- End Injecting site-wide to the head --> <script> var _jquery = window.$; var jqueryAliases = ['$', 'jquery', 'jQuery']; jqueryAliases.forEach((alias) => { Object.defineProperty(window, alias, { get() { return _jquery; }, set() { console.warn("Trying to over-write the global jquery object!"); } }); }); window.jQuery.migrateMute = true; </script> <script> window.cookiesNotificationMarkupPreview = 'null'; </script> <!-- HEAD RT JS Include --> <script id='d-js-params'> window.INSITE = window.INSITE || {}; window.INSITE.device = "tablet"; window.rtCommonProps = {}; rtCommonProps["rt.ajax.ajaxScriptsFix"] =true; rtCommonProps["rt.pushnotifs.sslframe.encoded"] = 'aHR0cHM6Ly97c3ViZG9tYWlufS5wdXNoLW5vdGlmcy5jb20='; rtCommonProps["runtimecollector.url"] = 'https://rtc.multiscreensite.com'; rtCommonProps["performance.tabletPreview.removeScroll"] = 'false'; rtCommonProps["inlineEditGrid.snap"] =true; rtCommonProps["popup.insite.cookie.ttl"] = '0.5'; rtCommonProps["rt.pushnotifs.force.button"] =true; rtCommonProps["common.mapbox.token"] = 'pk.eyJ1IjoiZGFubnliMTIzIiwiYSI6ImNqMGljZ256dzAwMDAycXBkdWxwbDgzeXYifQ.Ck5P-0NKPVKAZ6SH98gxxw'; rtCommonProps["common.mapbox.js.override"] =false; rtCommonProps["common.here.appId"] = 'iYvDjIQ2quyEu0rg0hLo'; rtCommonProps["common.here.appCode"] = '1hcIxLJcbybmtBYTD9Z1UA'; rtCommonProps["isCoverage.test"] =false; rtCommonProps["ecommerce.ecwid.script"] = 'https://app.multiscreenstore.com/script.js'; rtCommonProps["feature.flag.mappy.kml"] =false; rtCommonProps["common.resources.dist.cdn"] =true; rtCommonProps["common.build.dist.folder"] = 'production/5680'; rtCommonProps["common.resources.cdn.host"] = 'https://static.cdn-website.com'; rtCommonProps["common.resources.folder"] = 'https://static.cdn-website.com/mnlt/production/5680'; rtCommonProps["feature.flag.runtime.backgroundSlider.preload.slowly"] =true; rtCommonProps["feature.flag.runtime.newAnimation.enabled"] =true; rtCommonProps["feature.flag.runtime.newAnimation.jitAnimation.enabled"] =true; rtCommonProps["feature.flag.sites.google.analytics.gtag"] =true; rtCommonProps["feature.flag.runOnReadyNewTask"] =true; rtCommonProps["isAutomation.test"] =false; rtCommonProps['common.mapsProvider'] = 'mapbox'; rtCommonProps['common.mapsProvider.version'] = '0.52.0'; rtCommonProps['common.geocodeProvider'] = 'mapbox'; rtCommonProps['common.map.defaults.radiusSize'] = '1500'; rtCommonProps['common.map.defaults.radiusBg'] = 'rgba(255, 255, 255, 0.4)'; rtCommonProps['common.map.defaults.strokeColor'] = 'rgba(255, 255, 255, 1)'; rtCommonProps['common.map.defaults.strokeSize'] = '2'; rtCommonProps['server.for.resources'] = ''; rtCommonProps['feature.flag.lazy.widgets'] = true; rtCommonProps['feature.flag.single.wow'] = false; rtCommonProps['feature.flag.disallowPopupsInEditor'] = true; rtCommonProps['feature.flag.mark.anchors'] = true; rtCommonProps['captcha.public.key'] = '6LffcBsUAAAAAMU-MYacU-6QHY4iDtUEYv_Ppwlz'; rtCommonProps['captcha.invisible.public.key'] = '6LeiWB8UAAAAAHYnVJM7_-7ap6bXCUNGiv7bBPME'; rtCommonProps["images.sizes.small"] =160; rtCommonProps["images.sizes.mobile"] =640; rtCommonProps["images.sizes.tablet"] =1280; rtCommonProps["images.sizes.desktop"] =1920; rtCommonProps["modules.resources.cdn"] =true; rtCommonProps["import.images.storage.imageCDN"] = 'https://lirp.cdn-website.com/'; rtCommonProps["feature.flag.runtime.inp.threshold"] =150; rtCommonProps["feature.flag.performance.logs"] =true; rtCommonProps["site.widget.form.captcha.type"] = 'g_recaptcha'; rtCommonProps["friendly.captcha.site.key"] = 'FCMGSQG9GVNMFS8K'; rtCommonProps["cookiebot.mapbox.consent.category"] = 'marketing'; // feature flags that's used out of runtime module (in legacy files) rtCommonProps["platform.monolith.personalization.dateTimeCondition.popupMsgAction.moveToclient.enabled"] =true; rtCommonProps["streamline.monolith.personalization.skipRuleConditionsForPreview.enabled"] =true; window.rtFlags = {}; rtFlags["unsuspendEcwidStoreOnRuntime.enabled"] =true; rtFlags["scripts.widgetCount.enabled"] =true; rtFlags["fnb.animations.tracking.enabled"] =true; rtFlags["ecom.ecwidNewUrlStructure.enabled"] = false; rtFlags["ecom.ecwid.accountPage.emptyBaseUrl.enabled"] = true; rtFlags["ecom.ecwid.pages.links.disable.listeners"] = false; rtFlags["ecom.ecwid.storefrontV3.enabled"] = false; rtFlags["ecom.ecwid.old.store.fix.facebook.share"] = true; rtFlags["feature.flag.photo.gallery.exact.size"] =true; rtFlags["geocode.search.localize"] =false; rtFlags["feature.flag.runtime.newAnimation.asyncInit.setTimeout.enabled"] =false; rtFlags["twitter.heightLimit.enabled"] = true; rtFlags["editor.classicHybrid.photogallery.fix"] =true; rtFlags["runtime.lottieOverflow"] =false; rtFlags["runtime.monitoring.sentry.ignoreErrors"] = ""; rtFlags["contact.form.browserValidation.enabled"] =true; rtFlags["streamline.monolith.personalization.supportMultipleConditions.enabled"] =false; rtFlags["runtime.cwv.report.cls.enabled"] =true; rtFlags["editor.link.on.container"] =true; rtFlags["flex.runtime.popup.with.show"] =true; rtFlags["contact.form.useActiveForm"] =true; rtFlags["runtime.ssr.productStore.internal.observer"] =true; rtFlags["runtime.ssr.productCustomizations"] =true; rtFlags["flex.megaMenu.a11y"] =true; </script> <script src="https://static.cdn-website.com/mnlt/production/5680/_dm/s/rt/dist/scripts/d-js-one-runtime-unified-tablet.min.js" id="d-js-core"></script> <!-- End of HEAD RT JS Include --> <script src="https://static.cdn-website.com/mnlt/production/5680/_dm/s/rt/dist/scripts/d-js-jquery-migrate.min.js" ></script> <script> $(window).bind("orientationchange", function (e) { $.layoutManager.initLayout(); }); $(document).resize(function () { }); </script> <script type="text/javascript" id="d_track_campaign"> (function() { if (!window.location.search) { return; } const cleanParams = window.location.search.substring(1); // Strip ? const queryParams = cleanParams.split('&'); const expires = 'expires=' + new Date().getTime() + 24 * 60 * 60 * 1000; const domain = 'domain=' + window.location.hostname; const path = "path=/"; queryParams.forEach((param) => { const [key, value = ''] = param.split('='); if (key.startsWith('utm_')) { const cookieName = "_dm_rt_" + key.substring(4); const cookie = cookieName + "=" + value; const joined = [cookie, expires, domain, path].join(";"); document.cookie = joined; } }); }()); </script> <script type="text/javascript" > var _dm_gaq = {}; var _gaq = _gaq || []; var _dm_insite = []; </script> <script type="text/javascript" id="d_track_sp"> ;(function(p,l,o,w,i,n,g){if(!p[i]){p.GlobalSnowplowNamespace=p.GlobalSnowplowNamespace||[]; p.GlobalSnowplowNamespace.push(i);p[i]=function(){(p[i].q=p[i].q||[]).push(arguments) };p[i].q=p[i].q||[];n=l.createElement(o);g=l.getElementsByTagName(o)[0];n.async=1; n.src=w;g.parentNode.insertBefore(n,g)}}(window,document,"script","//d32hwlnfiv2gyn.cloudfront.net/sp-2.0.0-dm-0.1.min.js","snowplow")); window.dmsnowplow = window.snowplow; dmsnowplow('newTracker', 'cf', 'd32hwlnfiv2gyn.cloudfront.net', { // Initialise a tracker appId: '611a429b' }); // snowplow queries element styles so we wait until CSS calculations are done. requestAnimationFrame(() => { dmsnowplow('trackPageView'); _dm_insite.forEach((rule) => { // Specifically in popup only the client knows if it is shown or not so we don't always want to track its impression here // the tracking is in popup.js if (rule.actionName !== "popup") { dmsnowplow('trackStructEvent', 'insite', 'impression', rule.ruleType, rule.ruleId); } window?.waitForDeferred?.('dmAjax', () => { $.DM.events.trigger('event-ruleTriggered', {value: rule}); }); }); }); </script> <div style="display:none;" id="P6iryBW0Wu"></div> <!-- photoswipe markup --> <!-- Root element of PhotoSwipe. Must have class pswp. --> <div class="pswp" tabindex="-1" role="dialog" aria-hidden="true"> <!-- Background of PhotoSwipe. It's a separate element as animating opacity is faster than rgba(). --> <div class="pswp__bg"></div> <!-- Slides wrapper with overflow:hidden. --> <div class="pswp__scroll-wrap"> <!-- Container that holds slides. PhotoSwipe keeps only 3 of them in the DOM to save memory. Don't modify these 3 pswp__item elements, data is added later on. --> <div class="pswp__container"> <div class="pswp__item"></div> <div class="pswp__item"></div> <div class="pswp__item"></div> </div> <!-- Default (PhotoSwipeUI_Default) interface on top of sliding area. Can be changed. --> <div class="pswp__ui pswp__ui--hidden"> <div class="pswp__top-bar"> <!-- Controls are self-explanatory. Order can be changed. --> <div class="pswp__counter"></div> <button class="pswp__button pswp__button--close" title="Close (Esc)"></button> <button class="pswp__button pswp__button--share" title="Share"></button> <button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button> <button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button> <!-- Preloader demo http://codepen.io/dimsemenov/pen/yyBWoR --> <!-- element will get class pswp__preloader--active when preloader is running --> <div class="pswp__preloader"> <div class="pswp__preloader__icn"> <div class="pswp__preloader__cut"> <div class="pswp__preloader__donut"></div> </div> </div> </div> </div> <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"> <div class="pswp__share-tooltip"></div> </div> <button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)"> </button> <button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)"> </button> <div class="pswp__caption"> <div class="pswp__caption__center"></div> </div> </div> </div> </div> <div id="fb-root" data-locale="en"></div> <!-- Alias: 611a429b --> <div class="dmPopupMask" id="dmPopupMask"></div> <div id="dmPopup" class="dmPopup"> <div class="dmPopupCloseWrapper"> <div class="dmPopupClose dm-common-icons-close oneIcon" onclick="dmHidePopup(event);"></div> </div> <div class="dmPopupTitle"> <span></span> Share by:</div> <div class="data"></div> </div><script id="d_track_personalization"> window?.waitForDeferred?.('dmAjax', () => { // Collects client data and updates cookies used by smart sites window.expireDays = 365; window.visitLength = 30 * 60000; $.setCookie("dm_timezone_offset", (new Date()).getTimezoneOffset(), window.expireDays); setSmartSiteCookiesInternal("dm_this_page_view","dm_last_page_view","dm_total_visits","dm_last_visit"); }); </script> <script type="text/javascript"> Parameters.NavigationAreaParams.MoreButtonText = 'More'; Parameters.NavigationAreaParams.LessButtonText = 'Less'; Parameters.HomeLinkText = 'Home'; </script> <!-- End Script tags --> <!-- Site Wide Html Markup --> <!-- Site Wide Html Markup --> <!-- Begin Product Custom HTML Markup --> <script type="text/javascript" charset="utf-8"> $(document).ready(function() { var _extID; var _device = 'desktop'; var _plan = window.Parameters.planID; //set the external ID, if the site is fast migrated or normal site if (typeof(dmAPI) === 'object') { _extID = dmAPI.getSiteExternalId() } else if (typeof(siteDetails) === 'object') { _extID = siteDetails.ExternalUid; } else { _extID = false; } //if site is normal site & mobile visitor if(typeof($.layoutDevice) !== "undefined") { if($.layoutDevice.type === "mobile") { _device = 'mobile'; } } else if(typeof(camilyo.platform)){ _device = camilyo.platform.toLowerCase(); } //if site has an external ID set, load floating widgets if (_extID && _plan !== "1681" && _plan !== "1680") { window.liveSiteAsyncInit = function() { LiveSite.init({ id: _extID, mode: _device }); }; (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0], p = "https://", r = Math.floor(new Date().getTime() / 1000000); if (d.getElementById(id)) { return; } js = d.createElement(s); js.id = id; js.src = p + "widgets.vcdnita.com/assets/livesite.js?" + r; fjs.parentNode.insertBefore(js, fjs); }(document, "script", "livesite-jssdk")); } else { console.log("ExternalID/vID has not been added to site") } }) </script><!-- End Product Custom HTML Markup --> </body> </html>
URL: