/* ----- FORMLAIRES SITE ----- */
function checkSearch() {
	if (document.FRMSearch.code.value == "") alert("Vous devez renseigner au moins un terme de recherche.");
	else {
		document.FRMSearch.action = BasePath + "/search.php";
		document.FRMSearch.submit();
	}
}

function checkLogin() {
	if (document.FRMLogin.login.value == "") alert("Veuillez saisir votre login.");
	else if (document.FRMLogin.password.value == "") alert("Veuillez saisir votre mot de passe.");
	else {
		document.FRMLogin.action = BasePath + "/backoffice/php_login.php";
		document.FRMLogin.submit();
	}
}

function checkForgot() {
	if (document.FRMForgot.email.value == "") alert("Veuillez saisir votre email.");
	else {
		document.FRMForgot.action = BasePath + "/backoffice/php_forgot.php";
		document.FRMForgot.submit();
	}
}

/* ----- BACKOFFICE ----- */
function deleteArticle(code) {
	if (confirm("Etes-vous sūr?")) location.href = BasePath + "/backoffice/php_delete.php?code=" + code;
}
