﻿//***********************************************/
//* MeliaHanoi.com Project                   */
//* (c) 2007 CuteBiz Solutions Corporation      */
//* http://www.cutebiz.com                      */
//* Created by Smart River on 27 Aug. 07        */
//***********************************************/

function switch_display(obj)
{
	if(obj.style.display=='none')
	{
		obj.style.display='';
	}
	else
	{
		obj.style.display='none';
	}
}

function goVirtualTour(msg) {
	alert(msg);
}

function goBookNow(msg) {
	alert(msg);
}

function openMe(url, inNew, h, w)
{
	if (url == '')
		return;

	if (typeof(inNew)=='undefined!')
		inNew = 0;

	winDef = 'Height='.concat(h).concat(',Width=').concat(w).concat(',Top=').concat(((screen.height - h)/2)-20).concat(',Left=').concat((screen.width - w)/2).concat(',scrollbars');
	
	//.concat(',scrollbars,resizable');

	if (inNew)
	{
		newWindow = window.open(url, inNew, winDef);
		newWindow.focus();
	}
	else
	{
		location.href = url;
	}
}

/* Java language start */

	/*English*/
	en_goVT = "Virtual tour is not available at the moment, please check it out later!";
	en_goBN = "Please select check-in, check-out date, number of room and person then click on\nthe Check Availability on the left column to start booking.";

/* Java language end */