var newWindow = null;
var leaveSiteText = "You are now leaving the Renoir Hotel website, and will be redirected to our affiliated secured booking engine. Please make sure to check all rate details and policies before you complete and confirm your reservation."
var urlReserve = "https://utelllink.ibe.netbooker.com/web/FrontController.nb4?module=PropertySearch&operation=SinglePropertySearch&execute=yes&propertyCodeType=RV&chainCode=OT&instanceId=20&lookAndFeelId=2577&propertyCode=061054&locale=en"
var urlLookup = "https://utelllink.ibe.netbooker.com/web/FrontController.nb4?module=Reservation&operation=RetrieveReservationRV&execute=yes&instanceId=20&locale=en&lookAndFeelId=2577"

function leaveSiteAlert() {
	alert(leaveSiteText);
}

function toReservation() {
	alert(leaveSiteText)
	newWindow = window.open(urlReserve, "reservation");
	newWindow.focus();	
}

function toLookup() {
	alert(leaveSiteText)
	newWindow = window.open(urlLookup, "reservation");
	newWindow.focus();	
}