function validformu() {
    if (document.trans_text.pseudo.value.length < 5) {
	    window.alert("Veuillez entrer votre pseudo .");
		return false;
	}
    if (document.trans_text.email.value.length < 7) {
	    window.alert("Veuillez entrer votre E-mail.");
		return false;
	}

	return true;
}

function validcontact() {
    if (document.transcontact.email.value.length < 7) {
	    window.alert("Veuillez entrer votre E-mail.");
		return false;
	}
    if (document.transcontact.messagem.value.length < 30) {
	    window.alert("Veuillez entrer votre message .");
		return false;
	}

	return true;
}

function validanno() {
    if (document.annotext.region.value.length < 3) {
	    window.alert("Veuillez sélectionner une région .");
		return false;
	}
    if (document.annotext.commentaire.value.length < 30) {
	    window.alert("Veuillez entrer votre annonce.");
		return false;
	}

	return true;
}

function validreponse() {
    if (document.trans_reponse.mail.value.length < 7) {
	    window.alert("Veuillez entrer votre E-mail.");
		return false;
	}
    if (document.trans_reponse.message.value.length < 30) {
	    window.alert("Veuillez entrer votre message.");
		return false;
	}

	return true;
}




function PopupImage(img) {
	titre="Photo";
	w=open("",'image','width=400,height=400,top=20,left=20,toolbar=no,scrollbars=no,resizable=yes');	
	w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE></HEAD>");
	w.document.write("<SCRIPT language=javascript>function checksize()  { if (document.images[0].complete) {  window.resizeTo(document.images[0].width+12,document.images[0].height+30); window.focus();} else { setTimeout('check()',250) } }</"+"SCRIPT>");
	w.document.write("<BODY onload='checksize()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0><IMG src='"+img+"' border=0>");
	w.document.write("");
	w.document.write("</BODY></HTML>");
	w.document.close();
}
