

function ShowFlash(strFileName,StrWidth,strHeight)
{
	document.write ("<embed src='"+strFileName+"' style='width:"+StrWidth+"px; height:"+strHeight+"px' quality='high' type='application/x-shockwave-flash' wmode='transparent'></embed>")
}

	function RATESForm(){
		var strIn = "";
		var strOut="";
		var Adult="";
		var Child="";
		var HotelName="";
		strIn = document.frmCHECK_RATES.In_Day.value+"/"+document.frmCHECK_RATES.In_Month.value+"/"+document.frmCHECK_RATES.In_Year.value;
		strOut = document.frmCHECK_RATES.Out_Day.value+"/"+document.frmCHECK_RATES.Out_Month.value+"/"+document.frmCHECK_RATES.Out_year.value;
		Adult=document.frmCHECK_RATES.Adult.value;
		Child=document.frmCHECK_RATES.Child.value;
		HotelName = document.frmCHECK_RATES._HotelName.value;
		if (HotelName=="0")
		{
			alert("Sorry, you have not selected hotels!");
		}
		else
		{
			if (HotelName=="Hotel1")
				window.location=("http://www.hanoiluckyhotel.com/hotel1/?f=booking&In="+strIn+"&Out="+strOut+"&Adult="+Adult+"&Child="+Child+"#vt");
			else
				window.location=("http://www.hanoiluckyhotel.com/hotel2/?f=booking&In="+strIn+"&Out="+strOut+"&Adult="+Adult+"&Child="+Child+"#vt");
		}
	}
