// JavaScript Document

<!--

function popitup() {
	newwindow=window.open('','name','top=200,left=400,height=350,width=400,scrollbars=yes,resizable-no');
	var tmp = newwindow.document;
	tmp.write('<html><head><title>Terms & Condition</title>');
	tmp.write('<link rel="stylesheet" href="../css/popit.css">');
	tmp.write('</head><body><p><h1>Terms & Condition </h1></p>');
	tmp.write('<p><strong>Free Nights Offer:</strong></p>');
	tmp.write('<ul><li>Stay 7 nights & Pay 6 nights: Receive 1 night free including half board.</li><li>Stay 10 nights & Pay 8 nights: Receive 2 nights free including half board.</li><li>Stay 14 nights & Pay 11 nights: Receive 3 nights free including half board.</li></ul>');
	tmp.write('<p><strong>Details & Condition:</strong></p>');
	tmp.write('<ul><li>Validity: Febuary 20010; April 2010; May 1, 2010 - Sept. 31, 2010.</li><li>Not combinable with other promotion.</li></li><li>To be mentioned at time of booking.</li></ul>');
	tmp.write('<br />');
	tmp.write('<p><a href="javascript:self.close()"><strong>Close Window</strong></a></p>');
	tmp.write('</body></html>');
	tmp.close();
}


function popitup2() {
	newwindow2=window.open('','name','top=200,left=400,height=350,width=400,scrollbars=yes');
	var tmp = newwindow2.document;
	tmp.write('<html><head><title>Terms & Condition</title>');
	tmp.write('<link rel="stylesheet" href="../css/popit.css">');
	tmp.write('</head><body><p><h1>Terms & Condition </h1></p>');
	tmp.write('<p><strong>Honeymoon Special Offer!!</strong></p>');
	tmp.write('<br />');
	tmp.write('<p><strong>Low Season:</strong></p>');
	tmp.write('<ul><li>In Double Charm: 50% discount for 2nd person, on half board basis.</li><li>Upon arrival, one t-shirt, one pareo, one fruit platter, one bottle of sparkling wine & one special gala meal for 2 persons.</li></ul>');
	tmp.write('<p><strong>Details & Condition:</strong></p>');
	tmp.write('<ul><li>Nov. 1, 2009 - Oct. 31, 2010 (except Dec. 20, 2009 - Jan. 4, 2010).</li><li>Applicable to all room types.</li><li>Reduction is applicable only to the spouse; the husband pays full fare.</li><li>Reduction does not apply to Full Board or All Inclusive supplement.</li><li>This promotion is non-combinable with any other promotion, except the Early Bird Offer.</li><li>Wedding certificate must not exceed 9 months from date of issue at time of travel & may be required at check-in.</li><li>To be mentioned at time of booking "Honeymoon Offer".</li></ul>');
	tmp.write('<br />');
	tmp.write('<p><a href="javascript:self.close()"><strong>Close Window</strong></a></p>');
	tmp.write('</body></html>');
	tmp.close();
}

function popitup3() {
	newwindow3=window.open('','name','top=200,left=400,height=350,width=400,scrollbars=yes');
	var tmp = newwindow3.document;
	tmp.write('<html><head><title>Terms & Condition</title>');
	tmp.write('<link rel="stylesheet" href="../css/popit.css">');
	tmp.write('</head><body><p><h1>Terms & Condition </h1></p>');
	tmp.write('<p><strong>Early Booking Offer!!</strong></p>');
	tmp.write('<ul><li>50% discount per adult per stay. </li><li>For all booking made and confirmed 45 days before the date of arrival.</li></ul>');
	tmp.write('<p><strong>Details & Condition:</strong></p>');
	tmp.write('<ul><li>Validity: Jan. 1, 2010 - Apr. 30, 2010; May 1, 2010 - Sept. 30, 2010; October 2010.</li><li>The early booking offer is combinable with other promotion, except Honeymoon & Wedding Anniversary Offer.</li><li>To be mentioned at time of booking "Early Booking Offer".</li></ul>');
	tmp.write('<br />');
	tmp.write('<p><a href="javascript:self.close()"><strong>Close Window</strong></a></p>');
	tmp.write('</body></html>');
	tmp.close();
}

// -->