function clicie() {
	// Fonction de détection pour Internet Explorer
	if (event.button==2) {
		window.location= "index.php";
	}
}
function clicns(e){
	// Fonction pour Netscape
	if(e.which==3){
		window.location= "index.php";
		return false;
	}
}
if (document.all) {	document.onmousedown=clicie;}
if (document.layers) {document.captureEvents(Event.MOUSEDOWN); document.onmousedown = clicns;}

function validform() {
    if (document.trans_text.email.value.length < 5) {
	    window.alert("Veuillez entrer votre email .");
		return false;
	}
    if (document.trans_text.message.value.length < 20) {
	    window.alert("Veuillez entrer votre message .");
		return false;
	}

	return true;
}

function hidestatus(){
window.status=''
return true
}
if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)
document.onmouseover=hidestatus
document.onmouseout=hidestatus

