var WindowObjectReference = null;

function new_window() {
	if(WindowObjectReference == null || WindowObjectReference.closed) {
		WindowObjectReference = window.open("https://www.bournemouthairport.com/WhiteLabelParking/CarParkBooking?affiliate=Palmair",
		"new_window", "width=600,height=500,resizable=yes,scrollbars=no,status=yes");
	}
	else {
		WindowObjectReference.focus();

	};
}