function openClientReserko(country) {
	if ((country == undefined) || (country == 'NL')){
		var newWindow = window.open("http://kustbungalows.reserko.nl/client/wrapper.html","Reserveringscentrale", addProperties(730,600)+",status=0,scrollbars=0,resizable=0,address=0");
	}
	else if (country == 'DE'){
		var newWindow = window.open("http://kustbungalows.reserko.nl/client/wrapper_de.html","Reserveringscentrale", addProperties(730,600)+",status=0,scrollbars=0,resizable=0,address=0");
	}
	
	if (newWindow==null) {
		alert('De reserveringscentrale kon niet worden geopend, zet a.u.b. uw popupblocker uit.');
	}
}

function openFromFlash(url) {
	openExtUrl(url);
}

function addProperties(_width, _height) {
	var posX = ((screen.width/2) - _width / 2);
	var posY = ((screen.height/2) - _height / 2);
	return "left="+ posX + ",top=" + posY + ",width=" + _width + ",height=" + _height;
}

function openExtUrl(url) {
	var myWindow = window.open(url,"Reserko",'width=800,height=700,toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes');
	if (myWindow==null) {
		alert('De pagina kon niet worden geopend, zet a.u.b. uw popupblocker uit.\n'+url);
	}
}


