// open big pictures of ships
function openBig(picN)
{
	var source = 'bigPic.asp?picN='+ picN;
	win = window.open(source, "galleryBig", "top=0, left=0, status=no, resizable, scrollbars=yes")
	window.focus;
}

// change txt for activities page
function changeTxt(item)
{
	switch(item){
			case 'restaurant':
				document.getElementById('changeTxt').innerHTML=	"<h2>Restaurant</h2>" + 
																"<p>Situated just above the shoreline, The Bajul Restaurant & bar offers a breathtaking view of Menjangan bay and the lush beach with its mangrove forests. Experience a magical sunrise over breakfast, or savor a romantic dining experience under the stars, here at The Gawana Novus resort & Spa.</p>" + 
																"<p><a href='activities.cfm'>< Back</a></p>";
				break;
			case 'spa':
				document.getElementById('changeTxt').innerHTML=	"<h2>SPA</h2>" + 
																"<p>Indulge your mind, body and soul at The Gawana Novus with an array of healthful, relaxing treatments from our Spa. Traditional and modern soothing techniques are gracefully combined, using natural Indonesian herbs, creating total relaxation and long-lasting rejuvenation. Relax away from the hustle and bustle of everyday life, with various exotic body treatments such as Balinese massage, javanese lulur with traditional Indonesian to pamper your skin, or opt for an array of aromatherapy treatments.</p>" + 
																"<p><a href='activities.cfm'>< Back</a></p>";
				break;
			case 'trekking':
				document.getElementById('changeTxt').innerHTML=	"<h2>Trekking</h2>" + 
																"<p>The West Bali Park is a 70,000-hectare preserve of monsoon Forest, including the Menjangan island and its surrounding waters. The Park is an exotic wildlife sanctuary, an appealing haven for nature enthusiasts.</p>" + 
																"<p><a href='activities.cfm'>< Back</a></p>";
				break;
			case 'scuba':
				document.getElementById('changeTxt').innerHTML=	"<h2>Scuba Diving</h2>" + 
																"<p>Discover the fascinating underwater realm of a world-class diving area of the Menjangan Island. The Gawana Novus provides a Five star Center facility with complete equipment and PADI-certified dive masters.</p>" + 
																"<p><a href='activities.cfm'>< Back</a></p>";
				break;
			case 'snorkeling':
				document.getElementById('changeTxt').innerHTML=	"<h2>Snorkeling</h2>" + 
																"<p>Discover the fascinating underwater realm of a world-class diving area of the Menjangan Island.</p>" + 
																"<p><a href='activities.cfm'>< Back</a></p>";
				break;
	}
}
	

