// openwin

function openwin(url) {
	if(url == "reservation") {
		url = "residence_saly_reservation.html";
		fenetre = window.open(url, 'pop',
		'toolbar=no,resizable=no,scrollbars=no,width=600,height=450,top=10,left=10');
	}
	if(url == "qui") { 
		url = "residence_saly_qui_sommes_nous.html"; 
		fenetre = window.open(url, 'pop',
		'toolbar=no,resizable=no,scrollbars=yes,width=616,height=450,top=10,left=10');
	}
	
	
		fenetre.focus();


}

