//Func to change over to near hotel
function SelectH(H_URl)
{
	window.location = H_URl+'.html';
	return false;
}
//Func to redirect to diff set of Lang content
function SelectLang(Lang)
{
	if ( Lang == 'en' ) 
		{ window.location = "/index.html"; }
	else
		{ window.location = "/"+Lang+"/index.html"; }
	return false;
}