function validformu() {
    if (document.trans_immo.emailp2.value.length < 7) {
	    window.alert("Veuillez entrer votre E-mail.");
		return false;
	}
    if (document.trans_immo.ville2.value.length < 4) {
	    window.alert("Veuillez entrer la ville.");
		return false;
	}
    if (document.trans_immo.titrep2.value.length < 10) {
	    window.alert("Veuillez entrer le titre.");
		return false;
	}

	return true;
}

function validform() {
    if (document.trans_contact.nomc1.value.length < 4) {
	    window.alert("Veuillez entrer votre Nom.");
		return false;
	}
    if (document.trans_contact.prenomc1.value.length < 3) {
	    window.alert("Veuillez entrer votre Nom.");
		return false;
	}

    if (document.trans_contact.telepc1.value.length < 4) {
	    window.alert("Veuillez entrer votre n° téléphone.");
		return false;
	}
    if (document.trans_contact.emailc1.value.length < 5) {
	    window.alert("Veuillez entrer votre E-mail.");
		return false;
	}


	return true;
}
function CheckStr(userInput)
{
							
StrLen = window.document.trans_immo.descriptp2.value.length;
if (StrLen > 600 )
{
window.document.trans_immo.descriptp2.value = window.document.trans_immo.descriptp2.value.substring(0,600);
StrLeft = 0;
}
else
{
StrLeft = 600 - StrLen;
}
							
document.trans_immo.Len.value = StrLeft;
}




