// 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 5 nights & Pay 4 nights: Receive 1 night free including half board.</li><li>Stay 10 nights & Pay 8 nights: Receive 2 nights free including half board.</li></ul>');
	tmp.write('<p><strong>Details & Condition:</strong></p>');
	tmp.write('<ul><li>Validity: Nov. 22, 2009 - Dec. 21, 2009; Jan. 22, 2010 - Mar. 31, 2010; Apr. 11, 2010 - Sept. 30, 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 bride on half board basis.</li><li>Upon arrival, 1 t-shirt, one pareo, 1 fruit platter, 1 bottle of sparkling wine & 1 romantic dinner of the couple.</li></ul>');
	tmp.write('<p><strong>Details & Condition:</strong></p>');
	tmp.write('<ul><li>Validity: Valid all year round except Dec. 22, 2009 - Jan. 4, 2010</li><li>Minimum stay of 5 nights</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();
}

// -->