function numericCheck(phone){
//	var telephone = document._frmCoordonnees._txtTelephone.value;
	flg=0;
	for (var i=0;i<phone.length;i++){
		cmp="0123456789"
		tst=phone.substring(i,i+1)
		if (cmp.indexOf(tst)<0){
			flg++;
		}
	}
	if (flg!=0)
	{
		return false;
	}
	return true;
}