
var varIP =  "http://www.theleela.com/"; //"124.30.44.231"; //"Localhost"; //

//-----------print-------------------------------------

function sendurl()
{
	
	window.open("PrintPage.html",null,"height=500,width=720,status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes");
	
}


//----------email-------------------------------------

function getURL()
	{

		var CurrentURL=window.document.location;

		window.open(varIP + "email.aspx?cURL="+CurrentURL,null,"height=335,width=400,status=yes,toolbar=no,menubar=no,location=no,scrollbars=no");

	}


//-----------Reservation---------------------------------


function resreservationdiv()
{
    
	 var location = document.getElementById("select1");	
  	  var ResRadioGroup = document.getElementsByName("Resradiobutton"); 


	if(location.value=="")
	{
	  alert("Please select city !");
	}

	if(location.value=="mumbai")
	{
	  
		if(ResRadioGroup[0].checked==true)
		{
		document.location.href="https://www.reztrip.com/RezTripWeb/defaultSearchDisplay.do?propertyId=3438840";
		}

		if(ResRadioGroup[1].checked==true)
		{
			   document.location.href="https://www.reztrip.com/RezTripWeb/defaultSearchDisplay.do?propertyId=3054824";
		}

	}


	if(location.value=="bangalore")
	{
		
		if(ResRadioGroup[0].checked==true)
		{
			document.location.href="https://www.reztrip.com/RezTripWeb/defaultSearchDisplay.do?propertyId=9401213";
		}

		if(ResRadioGroup[1].checked==true)
		{
			document.location.href="https://www.reztrip.com/RezTripWeb/defaultSearchDisplay.do?propertyId=9196619";
		}
	}
	if(location.value=="goa")
	{
		
		if(ResRadioGroup[0].checked==true)
		{
			document.location.href="https://www.reztrip.com/RezTripWeb/defaultSearchDisplay.do?propertyId=9020218";
		}

		if(ResRadioGroup[1].checked==true)
		{
			document.location.href="https://www.reztrip.com/RezTripWeb/defaultSearchDisplay.do?propertyId=8711144";
		}
	}

	if(location.value=="kovalam")
	{
		
		if(ResRadioGroup[0].checked==true)
		{
			document.location.href="https://www.reztrip.com/RezTripWeb/defaultSearchDisplay.do?propertyId=9904429";
		}

		if(ResRadioGroup[1].checked==true)
		{
			document.location.href="https://www.reztrip.com/RezTripWeb/defaultSearchDisplay.do?propertyId=9664646";
		}
	}
	

}
//-----------Bookmark---------------------------------

function MeBook()
{
var MyURL = document.URL;
var MyTitle=document.title;
//alert(MyURL);
bookmarksite(MyTitle, MyURL);
}

function bookmarksite(title,MyURL)
{
if (window.sidebar) // firefox
	window.sidebar.addPanel(title, MyURL, "");
else if(window.opera && window.print)
{ // opera
	var elem = document.createElement('a');
	elem.setAttribute('href',MyURL);
	elem.setAttribute('title',title);
	elem.setAttribute('rel','sidebar');
	elem.click();
} 
else if(document.all)// ie
	window.external.AddFavorite(MyURL, title);
}
