    <link rel="stylesheet" media="screen" href="https://code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css" />

    <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
    <script>
      'use strict';
      //$.noConflict();
      jQuery(document).ready(function ($) {
        function getField(id) {
          var el = jQuery('#' + id + '-picker');
          return el.length ? el : null;
        }

        function pickerSetup(id, date) {
          var el = getField(id);
          //console.log("sdsdsd1");
           //console.log(el);
          if (el !== null) {
            var checkin = id === 'checkin';
            el.datepicker({
              altField: el.get(0).form[id],
              altFormat: 'dd-mm-yy',
              dateFormat: 'dd-mm-yy',
              onSelect: function () {
                if (checkin && getField('checkout') !== null) {
                  var constraint = new Date(el.datepicker('getDate'));
                  constraint.setDate(constraint.getDate() + 1);
                  getField('checkout').datepicker('option', 'minDate', constraint);
                }
              },
              numberOfMonths: 2,
              mandatory: true,
              firstDay: 1,
              minDate: date,
              maxDate: '+2y',
            });
            
            el.datepicker('setDate', date);
          }
        }

        pickerSetup('checkin', '+1');
        pickerSetup('checkout', '+2');
        $('.fa.fa-calendar').on('click', function() {
    $('#checkin-picker').focus();
  })
      });
    </script>
    
    <!--
END COPY
-->
    <link rel="stylesheet" media="screen" href="https://code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css" />

    <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
    <script>
      'use strict';
      //$.noConflict();
      jQuery(document).ready(function ($) {
        function getField(id) {
          var el = jQuery('#' + id + '-picker');
          return el.length ? el : null;
        }

        function pickerSetup(id, date) {
          var el = getField(id);
          //console.log("sdsdsd1");
           //console.log(el);
          if (el !== null) {
            var checkin = id === 'checkin';
            el.datepicker({
              altField: el.get(0).form[id],
              altFormat: 'dd-mm-yy',
              dateFormat: 'dd-mm-yy',
              onSelect: function () {
                if (checkin && getField('checkout') !== null) {
                  var constraint = new Date(el.datepicker('getDate'));
                  constraint.setDate(constraint.getDate() + 1);
                  getField('checkout').datepicker('option', 'minDate', constraint);
                }
              },
              numberOfMonths: 2,
              mandatory: true,
              firstDay: 1,
              minDate: date,
              maxDate: '+2y',
            });
            
            el.datepicker('setDate', date);
          }
        }

        pickerSetup('checkin', '+1');
        pickerSetup('checkout', '+2');
        $('.fa.fa-calendar').on('click', function() {
    $('#checkin-picker').focus();
  })
      });
    </script>
    <!--
END COPY
-->
<div id='ds_search_box' >
<div id='ds_search_box1'> 
<div class="row">

<!--<form action="https://vangelishotel.reserve-online.net/" method="post" target="_blank">-->

<script src="https://momentjs.com/downloads/moment.js"></script>
<form action="https://napamermaidhotel.reserve-online.net/" method="post" target="_blank" id='pix_form' name='pix_form'>
	<input type="hidden" name="lang" value="en_GB">
<!--<div class="col-md-2">
	<label for="checkin">Check-in</label>
	<input id="checkin-picker" name="checkin" size="12" maxlength="10" placeholder="dd/mm/yyyy" value="25/04/2026" readonly>
	<i class="fa fa-calendar"></i>
</div>
<div class="col-md-2">
	<label for="nights">Staying for</label>
	<select id="nights" name="nights">
		<option value="1" selected="selected">1 night</option>
		<option value="2">2 nights</option>
		<option value="3">3 nights</option>
		<option value="4">4 nights</option>
		<option value="5">5 nights</option>
		<option value="6">6 nights</option>
		<option value="7">7 nights</option>
	</select>
</div>
-->
<div class="col-md-4">
<div class="col-md-6">
	<label for="checkin">Check-in</label>
	<input id="checkin-picker" name="checkin" size="12" maxlength="10" placeholder="dd/mm/yyyy" value="25/04/2026" readonly>
	<i class="fa fa-calendar"></i>
</div>
<div class="col-md-6">
	<label for="checkout-picker">Check-out</label>
    <input type="text" name="checkout" size="12" maxlength="10" id="checkout-picker" placeholder="dd/mm/yyyy" readonly/>
    <i class="fa fa-calendar"></i>
</div>
</div>
<div class="col-md-2">
	<label for="rooms">Rooms</label>
	<select id="rooms" name="rooms">
		<option value="1" selected="selected">1 room</option>
		<option value="2">2 rooms</option>
		<option value="3">3 rooms</option>
		<option value="4">4 rooms</option>
	</select>
</div>
<div class="col-md-2">
	<label for="adults">Adults</label>
	<select id="adults" name="adults">
		<option value="1">1 adult</option>
		<option value="2" selected="selected">2 adults</option>
		<option value="3">3 adults</option>
		<option value="4">4 adults</option>
	</select>
</div>
<div class="col-md-2">
	<label for="children">Children</label>
	<select id="children" name="children">
		<option value="0" selected="selected">no children</option>
		<option value="1">1 child</option>
		<option value="2">2 children</option>
		<option value="3">3 children</option>
	</select>
</div>
<div class="col-md-2">

	<!--<button type="submit" class="prime">Room Search</button>-->
	<button type='button' class="prime" name='pix_sub' id='pix_sub'>Book Now</button>
</div>
</form>
</div>
</div>
</div>
<script>
$ = jQuery;
$(document).ready(function () {
       jQuery("#pix_sub").on('click',function () {
       var date_c = jQuery("#checkin-picker").val();
       var tmp = date_c.split("-");
       var check_in = tmp[2]+'-'+tmp[1]+'-'+tmp[0];
       var objcheck_in = new Date(check_in);
       var hd1 = check_in;
      var hr =  jQuery("#rooms").val();
      var adult =  parseInt(jQuery("#adults").val());
      var child =  parseInt(jQuery("#children").val());
      var traveler = adult+child;
      var date_chk = jQuery("#checkout-picker").val();
       var tmp_chk = date_chk.split("-");
       var check_out = tmp_chk[2]+'-'+tmp_chk[1]+'-'+tmp_chk[0];
       var hd2 = check_out;
      var hc1 = 'Protaras';
      var hs1 = 'Paralimni'; 
      var params = {
hd1: hd1 , /* Check In Date. Format yyyy-mm-dd. Ex: 2015-02-14 */
hd2: hd2, /* Check Out Date. Format yyyy-mm-dd. Ex: 2015-02-14 */
hc1: hc1, /* Destination City */
hs1: "", /* Destination State or Region */
hr: hr, /* Number of Rooms */
t: traveler /* Number of Travelers */
};

/* Please do not modify the below code. */
try{params = Object.assign({}, sjrn_params, params);}catch(e){}
var cid = [];
var paramsArr = [];
var cidParams = [];
var pl = document.createElement('iframe');
var defaultParams = {"vid":"hot","et":"hpr"};
for(key in defaultParams) { params[key] = defaultParams[key]; };
for(key in cidParams) { cid.push(params[cidParams[key]]); };
params.cid = cid.join('|');
for(key in params) { paramsArr.push(key + '=' + encodeURIComponent(params[key])) };
pl.type = 'text/html';
pl.setAttribute('style','height:0; width: 0; display:none;');
pl.async = true;
//pl.src = 'https://static.sojern.com/cip/w/s?id=350231&f_v=v6_js&p_v=1&' + paramsArr.join('&');
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(pl);
 jQuery('#pix_form').submit(); 
          
      });
     
});
</script>
<style>
#ds_search_box{
padding:0px !important;
}
#ds_search_box {
width: 100%;
  position: absolute;
  bottom: 0px;
  z-index: 1;
  background: rgba(255,255,255,0.5) !important;
  margin-bottom: 35px !important;
}
#ds_search_box1 {
  max-width:920px;
  margin: 0 auto;
  padding:15px;
 
}
#ds_search_box1 input {
  background: #fff;
    background-color: rgb(255, 255, 255);
  display: table;
  width: 100%;
  position: relative;
}
#ds_search_box1 input, #ds_search_box select {
  height: 35px;
  border-radius: 2px;
  border: 1px solid #ccc;
  box-shadow: none;
  outline: 0 none;
  background-color: #fff !important;
}
#ds_search_box1 input {
  background: #fff;
    background-color: rgb(255, 255, 255);
  display: table;
  width: 100%;
  position: relative;
}
#ds_search_box1 input, #ds_search_box1 select {
  height: 35px;
  border-radius: 2px;
  border: 1px solid #ccc;
  box-shadow: none;
  outline: 0 none;
  background-color: #fff !important;
}
#ds_search_box1 label {
  color: #fff;
}	
#ds_search_box1 .prime{background-color:rgb(161, 112, 118) !important;
margin-top: 25px !important;
color:#fff;
padding: 5px 10px !important;
border: 1px solid rgb(161, 112, 118);}
.ui-datepicker .ui-datepicker-current-day a {
  color: #000;
}
.ui-datepicker .ui-datepicker-calendar td{padding:0px;}
#ds_search_box1 .fa-calendar {
  background: #e5e5e5 none repeat scroll 0 0;
  color: #777;
  cursor: pointer;
  padding: 10px 12px;
  position: absolute;
  right: 10px;
  top: 26px;
  font-family: FontAwesome !important;
}
</style>{"id":8335,"date":"2020-04-07T11:39:15","date_gmt":"2020-04-07T11:39:15","guid":{"rendered":"http:\/\/napamermaidhotel.com\/?page_id=8335"},"modified":"2025-07-18T13:25:30","modified_gmt":"2025-07-18T09:55:30","slug":"hotel-policies","status":"publish","type":"page","link":"https:\/\/napamermaidhotel.com\/de\/hotel-policies\/","title":{"rendered":"Hotel Policies"},"content":{"rendered":"<p class=\"qtranxs-available-languages-message qtranxs-available-languages-message-de\">Leider ist der Eintrag nur auf <a href=\"https:\/\/napamermaidhotel.com\/en\/wp-json\/wp\/v2\/pages\/8335\" class=\"qtranxs-available-language-link qtranxs-available-language-link-en\" title=\"English\">Amerikanisches Englisch<\/a> verf\u00fcgbar. Der Inhalt wird unten in einer verf\u00fcgbaren Sprache angezeigt. Klicken Sie auf den Link, um die aktuelle Sprache zu \u00e4ndern.<\/p><p>[vc_row full_width=&#8220;stretch_row_content_no_spaces&#8220;][vc_column][vc_single_image image=&#8220;8446&#8243; img_size=&#8220;full&#8220; alignment=&#8220;center&#8220;][vc_column_text][\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column][vc_column_text]<\/p>\n<h2 style=\"text-align: center;\">Hotel Policies<\/h2>\n<p style=\"text-align: center;\"><a href=\"https:\/\/napamermaidhotel.com\/wp-content\/uploads\/2025\/07\/Napa-Mermaid-Policies-English-2025.pdf\" target=\"_blank\" rel=\"noopener\">Napa Mermaid Policies English 2025<\/a><\/p>\n<p style=\"text-align: center;\"><a href=\"https:\/\/napamermaidhotel.com\/wp-content\/uploads\/2025\/07\/Napa-Mermaid-Policies-German-2025.pdf\" target=\"_blank\" rel=\"noopener\">Napa Mermaid Policies German 2025<\/a><\/p>\n<p style=\"text-align: center;\"><a href=\"https:\/\/napamermaidhotel.com\/wp-content\/uploads\/2025\/07\/Napa-Mermaid-Policies-Greek-2025.pdf\" target=\"_blank\" rel=\"noopener\">Napa Mermaid Policies Greek 2025<\/a><\/p>\n<p>[\/vc_column_text][\/vc_column][\/vc_row][vc_row full_width=&#8220;stretch_row_content&#8220; css=&#8220;.vc_custom_1586165739469{background-color: #f4f4f4 !important;}&#8220;][vc_column css=&#8220;.vc_custom_1586253300807{padding-left: 120px !important;}&#8220;][vc_column_text css=&#8220;.vc_custom_1586258966969{padding-left: 30px !important;}&#8220;]<\/p>\n<h3 style=\"text-align: left;\"><strong>Quality Management<\/strong><\/h3>\n<p>&nbsp;<\/p>\n<p>Napa Mermaid Hotel &amp; Suites aims to become one of the top five hotels in Cyprus in terms of quality and guest satisfaction.<\/p>\n<p>The hotel affirms that is highly committed to providing high quality services with an aim to satisfy the needs and expectations of our valued guests by ensuring that:<\/p>\n<p>1. Our services and facilities are designed and operated to consistently provide the highest quality standards that will satisfy the needs and expectations of our guests and related legislation.<\/p>\n<p>2. Our facilities and equipment are maintained to the highest standards of cleanliness, comfort and reliability for the benefit of our guests and business and the environment.<\/p>\n<p>3. Qualitative and quantitative targets are set in order to continually improve the effectiveness and suitability of the management system in operation and the minimization of the environmental impact of our operations.<\/p>\n<p>4. Ongoing training and development of our employees for quality and food safety, environment who are encouraged to participate in our improvement efforts.<\/p>\n<p>5. The hotel ensures that the requirements of ISO 9001, ISO 14001, Travelife and FAO\/WHO Codex Alimentarius Commission CAC\/RCP 1-1969 (1997) are continuously achieved and maintained.[\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column css=&#8220;.vc_custom_1586253490102{padding-left: 40px !important;}&#8220;][vc_column_text css=&#8220;.vc_custom_1586259542894{padding-left: 20px !important;}&#8220;]<\/p>\n<h3><strong>Environmental<\/strong><\/h3>\n<p>Napa Mermaid\u2019s management and employees are committed to environmental protection and implementation of a relevant management system to reduce the hotel\u2019s impact on the environment and continuously improve its performance. Among other goals we ensure compliance with all applicable legislations and regulations, collaboration with the local and state authorities, adoption of procedures and measures which minimize our environmental impact and implementation of reliable and productive processes, services and infrastructure that benefit the environment, local society, our guests, employees and the hotel.[\/vc_column_text][\/vc_column][\/vc_row][vc_row full_width=&#8220;stretch_row_content&#8220; css=&#8220;.vc_custom_1586165739469{background-color: #f4f4f4 !important;}&#8220;][vc_column css=&#8220;.vc_custom_1586253300807{padding-left: 120px !important;}&#8220;][vc_column_text css=&#8220;.vc_custom_1586259519710{padding-left: 30px !important;}&#8220;]<\/p>\n<h3><strong>Health &amp; Safety<\/strong><\/h3>\n<p>The hotel is committed in securing a healthy and safe work environment for its guests, employees and other third parties.<\/p>\n<p>It complies with all health and safety obligations under the various pieces of national and European Union legislation, recognizes and assesses the occupational health and safety risks associated with its activities, undertakes all needed measures for the protection and prevention of health and safety hazards and implements a health and safety management system.[\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column css=&#8220;.vc_custom_1586253490102{padding-left: 40px !important;}&#8220;][vc_column_text css=&#8220;.vc_custom_1586259496673{padding-left: 20px !important;}&#8220;]<\/p>\n<h3><strong>Employee<\/strong><\/h3>\n<p>Napa Mermaid firmly believes that human resource is critical to an employee oriented, productive workplace in which employees are energized and engaged. We are committed in investing and promoting our people for their personal, economic and professional development. Furthermore we commit in maintaining an efficient workplace that improves the morale and productivity of employees and minimizes complaints, disruptions and inefficiencies. The hotel is against all forms of unlawful and unfair discrimination. All applicants and employees will be treated fairly and will not be discriminated.<\/p>\n<p>Through this policy we ensure that the hotel implements labor legislation promotes and communicates equal opportunities to all employees and provides equality, training and development opportunities to all employees irrespective of gender, marital status, religious belief, political opinion, race, disability, sexual orientation and age.[\/vc_column_text][\/vc_column][\/vc_row][vc_row full_width=&#8220;stretch_row_content&#8220; css=&#8220;.vc_custom_1586165739469{background-color: #f4f4f4 !important;}&#8220;][vc_column css=&#8220;.vc_custom_1586253300807{padding-left: 120px !important;}&#8220;][vc_column_text css=&#8220;.vc_custom_1586259475910{padding-left: 30px !important;}&#8220;]<\/p>\n<h3><strong>Human Rights<\/strong><\/h3>\n<p>Napa Mermaid supports promotes and implements human rights as described in the Universal Declaration of Human Rights and ILO\u2019s Declaration on Fundamental Principles and Rights at Work. As a responsible employer Napa Mermaid is against: all forms of unlawful and unfair discrimination, illegal employment, exploitation of children, child abuse, child labor and any forced or compulsory labor. The management commits in raising awareness and cooperating with responsible authorities if need arises.[\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column css=&#8220;.vc_custom_1586253490102{padding-left: 40px !important;}&#8220;][vc_column_text css=&#8220;.vc_custom_1586259358800{padding-left: 20px !important;}&#8220;]<\/p>\n<h3><strong>Community<\/strong><\/h3>\n<p>We aim in working closely with the local society (communities, administrations, businesses, other organizations and individuals) for achieving sustainable development, developing the surrounding communities and protecting the local environment, history and culture. By operating our hotel responsibly, implementing legislation and respecting our stakeholders, we create strong ties with the local society and build a respectful reputation. We are committed in implementing national legislation and local regulations, maintaining relationships and regular communication with local authorities, chambers, unions and organizations, organizing or participating in activities in collaboration with the local society and donating to local charity foundations. In addition the hotel collaborates and purchases products and services from local companies whenever possible.[\/vc_column_text][\/vc_column][\/vc_row][vc_row full_width=&#8220;stretch_row_content&#8220; css=&#8220;.vc_custom_1586165739469{background-color: #f4f4f4 !important;}&#8220;][vc_column css=&#8220;.vc_custom_1586253300807{padding-left: 120px !important;}&#8220;][vc_column_text css=&#8220;.vc_custom_1586259410735{padding-left: 30px !important;}&#8220;]<\/p>\n<h3><strong>Food Safety<\/strong><\/h3>\n<p>The hotel is committed in implementing a food safety management system according to FAO\/WHO Codex Alimentarius Commission CAC\/RCP 1-1969 (1997) to ensure that all food and beverage products are produced, stored, handled and server always safe and fresh. This management system sets high food hygiene requirements and uses the HACCP method to identify, evaluate and control the critical control points in all stages of food production and service.[\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column][\/vc_column][\/vc_row]<\/p>","protected":false},"excerpt":{"rendered":"<p>Leider ist der Eintrag nur auf Amerikanisches Englisch verf\u00fcgbar. Der Inhalt wird unten in einer verf\u00fcgbaren Sprache angezeigt. Klicken Sie auf den Link, um die aktuelle Sprache zu \u00e4ndern.[vc_row full_width=&#8220;stretch_row_content_no_spaces&#8220;][vc_column][vc_single_image image=&#8220;8446&#8243; img_size=&#8220;full&#8220; alignment=&#8220;center&#8220;][vc_column_text][\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column][vc_column_text] Hotel Policies Napa Mermaid Policies English 2025 Napa Mermaid Policies German 2025 Napa Mermaid Policies Greek 2025 [\/vc_column_text][\/vc_column][\/vc_row][vc_row full_width=&#8220;stretch_row_content&#8220; css=&#8220;.vc_custom_1586165739469{background-color: #f4f4f4 !important;}&#8220;][vc_column [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"_links":{"self":[{"href":"https:\/\/napamermaidhotel.com\/de\/wp-json\/wp\/v2\/pages\/8335"}],"collection":[{"href":"https:\/\/napamermaidhotel.com\/de\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/napamermaidhotel.com\/de\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/napamermaidhotel.com\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/napamermaidhotel.com\/de\/wp-json\/wp\/v2\/comments?post=8335"}],"version-history":[{"count":20,"href":"https:\/\/napamermaidhotel.com\/de\/wp-json\/wp\/v2\/pages\/8335\/revisions"}],"predecessor-version":[{"id":9440,"href":"https:\/\/napamermaidhotel.com\/de\/wp-json\/wp\/v2\/pages\/8335\/revisions\/9440"}],"wp:attachment":[{"href":"https:\/\/napamermaidhotel.com\/de\/wp-json\/wp\/v2\/media?parent=8335"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}