Event.observe(window, "load", function() {
	
	// Popup form on submit
	if ($('full-moon-booking')) {
		Event.observe($('full-moon-booking'), 'submit', function() {
			var pageName = 'Stay At Base';
			popup('', pageName, 750, 450);
			$('full-moon-booking').target = pageName;
			return true;
		});
	}
	
	function popup(url, title, w, h) {
		var winl = (screen.width - w) / 2;
		var wint = (screen.height - h) / 2;
		var features = "width="+w+",height="+h+",top="+wint+",left="+winl+",scrollbars=yes,resizable=yes";
		window.open(url, title, features); 
		return false; 
	}
	
}); 
 