<!--


function imprimer () {
	window.print();
	}


function PreloadMenuImages () {
	var mimg1 = new Image();
	mimg1.src = 'img/24.jpg';
	}


function ValidateForm (TheForm) {
	var err = 0;
	if (TheForm.url && TheForm.url.value == '') { TheForm.url.value = '#'; }
	if (TheForm.pageitemlibelle && TheForm.pageitemlibelle.value == '') { TheForm.pageitemlibelle.value = 'nul'; }
	if (TheForm.name == 'form_contact' && TheForm.societe.value == '') { TheForm.societe.value = ' '; }
	for (i=0; i<TheForm.length; i++) {
		if (TheForm.elements[i].value == '' && TheForm.elements[i].name != 'logo') { err++; }
		}
	if (err > 0) {
		alert ('Veuillez remplir tous les champs obligatoires svp.');
		}
	else {
		TheForm.submit();
		}
	}


function goConservLogo(theForm) {
	if (theForm.conservLogo.value == '1') {
		theForm.conservLogo.value = '0';
		theForm.conservLogo.checked = false;
		theForm.logo.disabled = false;
		}
	else {
		theForm.conservLogo.value = '1';
		theForm.conservLogo.checked = true;
		theForm.logo.disabled = true;
		}
	}


//-->