// JavaScript Document

<!--

function popitup() {
	newwindow=window.open('','name','top=200,left=400,height=300,width=380,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 - Stay 6 & Pay 5 nights!!</strong></p>');
	tmp.write('<ul><li>Pay 5 nights and have 1 night free on half board basis.</li><li>Validity: May 1, 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=300,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 Offer!!</strong></p>');
	tmp.write('<ul><li>25% discount for the bride on ½ double half board during Nov. 1, 2009 - Dec. 19, 2009; Jan. 8, 2010 - Apr. 30, 2010; Oct. 1, 2010 - Oct. 31, 2010</li><li>50% discount during May 1, 2010 - Sept. 30, 2010.</li><li>Minimum of 4 nights stay.</li><li>1 Fruit basket & 1 bottle of sparkling wine in the room.</li><li>Marriage certificate attesting that the coouple has been married within a period not exceeding 3 months form their arrival date to be shown upon check-in.</li><li>Not combinable with other promotion.</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();
}

// -->