

function emailAlert() {
var msg = "Our reservation department is on Spring break and will reopen April 13th.  Thank you for your e-mail and it will be responded to on April 13th. Click 'OK' to send an e-mail. Click 'Cancel' to return to the page.";

	if (confirm(msg)) 
		location.replace("mailto:opi@oceanpointinn.com");
	//else
	//	returnfalse;
  
}