function envoieDem(hndl, lang){
	if(validForm(hndl)){
		killAjax();
		ret = function(){
			if(ajaxOk()){
				document.getElementById('formemploi').innerHTML = objAjax.responseText;
			}
		}
		callAjax('/scripts/addDemande.php?lang='+lang,ret,null,hndl);
	}
}

function insertToMailing(hndl, cat){
	if(validForm(hndl)){
		killAjax();
		ret = function(){
			if(ajaxOk()){
				document.getElementById('mailing').innerHTML = objAjax.responseText;
			}
		}
		callAjax('/scripts/ajax.php?what=inserttomailing&catid='+cat,ret,null,hndl);
	}
}

function checkDefaultText(val,col){
	if (('undefined' == typeof col|| col == null)) col = '#999';
	if(document.getElementById(val.id).value == '' || document.getElementById(val.id).value == val.getAttribute('default'))
	{
		document.getElementById(val.id).style.color = col;
		document.getElementById(val.id).value = val.getAttribute('default');
	}
}

function clearDefaultText(val,col){
	if (('undefined' == typeof col|| col == null)) col = '#000';
	if(document.getElementById(val.id).value == val.getAttribute('default')){
		document.getElementById(val.id).value = '';
		document.getElementById(val.id).style.color = col;
		document.getElementById(val.id).focus();
	}
}
