// 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 9 nights & Pay 7 nights: Receive 2 nights free including half board.</li><li>Stay 11 nights & Pay 9 nights: Receive 3 nights free including half board.</li></ul>');
	tmp.write('<p><strong>Details & Condition:</strong></p>');
	tmp.write('<ul><li>Validity: Valid all year round except Dec. 22, 2009 - Jan. 3, 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('<ul><li>40% discount for the 2nd person on half board basis.</li><li>1 VIP treament in room upon arrival</li><li>Flowers & Creole delicacies</li><li>1 free dou massage 30 massage.</li><li>1 free upgrade oriental Galle dinne at the Momos Restaurant during the stay.</li></ul>');
	tmp.write('<p><strong>Details & Condition:</strong></p>');
	tmp.write('<ul><li>Validity: Valid all year round except Dec. 22, 2009 - Jan. 3, 2010.</li><li>This promotion is non-combinable with any other promotion.</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>5% discount per booking per stay on half board basis.</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: Valid all year round except Dec. 22, 2009 - Jan. 3, 2010.</li><li>The early booking offer is combinable with other promotion.</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();
}

// -->