// 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 4 nights & Pay 3 nights: Receive 1 night free including half board.</li><li>Stay 8 nights & Pay 6 nights: Receive 2 nights free including half board.</li></ul>');
	tmp.write('<p><strong>Details & Condition:</strong></p>');
	tmp.write('<ul><li>Validity: Until Oct 31, 2011.</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>50% reduction for the bride.</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: Until Oct 31, 2011.</li><li>Minimum Stay - 4 nights & Not combinable with other offers.</li><li>This promotion is non-combinable with any other promotion.</li><li>Wedding Certificate 9 months to be produced upon arrival.</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();
}

// -->
