// JavaScript Document

<!--

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% discount for the spouse on half board basis.</li><li>Upon arrival: fruit plate, bunch of flowers, 1 bottle of mineral water, 1 bottle of sparkling wine, 1 Sofitel Imperial resort & Spa gft.</li></ul>');
	tmp.write('<p><strong>Details & Condition:</strong></p>');
	tmp.write('<ul><li>Validity: Valid all year round, except Dec. 22, 2009 - Jan. 5, 2010.</li><li>Wedding certificate not older than 9 months is required at check]in</li><li>This offer is not applicable with other offer/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();
}

function popitup4() {
	newwindow4=window.open('','name','top=200,left=400,height=350,width=400,scrollbars=yes');
	var tmp = newwindow4.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>Wedding Anniversary Offer!!</strong></p>');
	tmp.write('<ul><li>50% discount for the spouse on half board basis.</li><li>Upon arrival: fruit plate, bunch of flowers, 1 bottle of mineral water, 1 bottle of sparkling wine, 1 Sofitel Imperial resort & Spa gft.</li></ul>');
	tmp.write('<p><strong>Details & Condition:</strong></p>');
	tmp.write('<ul><li>Validity: Valid all year round, except Dec. 22, 2009 - Jan. 5, 2010.</li><li>From 15 years of marriage then every 5 years.</li><li>Wedding certificate has to be produced at time of check-in.</li><li>This offer is not applicable with other offer/promotion.</li><li>To be mentioned at time of booking "Wedding Anniversary 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();
}

// -->
