window.onload = function(){
	var d = new Date();
	if(window.document.forms['affiliation_envoi'].jour) window.document.forms['affiliation_envoi'].jour.value = d.getDate();
	if(window.document.forms['affiliation_envoi'].mois) window.document.forms['affiliation_envoi'].mois.value = d.getMonth()+1;
	if(window.document.forms['affiliation_envoi'].annee) window.document.forms['affiliation_envoi'].annee.value = d.getFullYear();
	if(window.document.forms['affiliation_envoi'].heure) window.document.forms['affiliation_envoi'].heure.value = d.getHours();
	if(window.document.forms['affiliation_envoi'].minute) window.document.forms['affiliation_envoi'].minute.value = d.getMinutes();
	if(window.fopenURLisOK) fopenURLisOK();
}

function Calcul(){
	var m = 160;

	if(!document.forms['affiliation_envoi'] || !document.forms['affiliation_envoi'].message) return false;

	if(document.getElementById('smsbox_max_length') && parseInt(document.getElementById('smsbox_max_length').value)>=100 && parseInt(document.getElementById('smsbox_max_length').value)<=m) m = parseInt(document.getElementById('smsbox_max_length').value);

	var L = document.forms['affiliation_envoi'].message.value.length;
	if(window.document.getElementById('nbCar')) window.document.getElementById('nbCar').innerHTML = (m-L>0)? m-L : 0;
	if(L>m) document.forms['affiliation_envoi'].message.value = document.forms['affiliation_envoi'].message.value.substring(0, m);
}