// JavaScript Document

function p() {
	if (document.pass.frm_pass.value=='biodenth07') {
		document.location.href='professionnel/espace-membre.html';
	} else {
		alert('Mot de passe invalide');
		return false;
	}
}
//presentation script
function change_cell_presentation(id) {
	document.getElementById(id).style.background = "#598936";
	document.getElementById('bgd_menu_presentation_av').style.background = "#598936";
	document.images["img_presentation"].src = "../images/biodenth-menu-coin-left_out.gif";
}
function retab_cell_presentation(id) {
	document.getElementById(id).style.background = "#93B878";
	document.getElementById('bgd_menu_presentation_av').style.background = "#93B878";
	document.images["img_presentation"].src = "../images/biodenth-menu-coin-left.gif";
}
/***********************/
function change_cell(id) {
	document.getElementById(id).style.background = "#598936";
}
function retab_cell(id) {
	document.getElementById(id).style.background = "#93B878";
}