function handleSubmitLink(oIdentifiant, oPassword){
	// si identifiant et mot de passe <> ''
	if(oIdentifiant.value != '' && oPassword.value != ''){
		var sSubmitLink = document.getElementById('action_handler').value + '?height=460&width=432&Identifiant=' + oIdentifiant.value + '&Password=' + oPassword.value + '&TB_iframe=true&keepThis=true&modal=true';
	}
	else{
		var sSubmitLink = document.getElementById('action_handler').value + '?height=460&width=432&TB_iframe=true&keepThis=true&modal=true';
	}
	document.getElementById('submit_button').alt = sSubmitLink;
}

function handleSubmitLink_2(oIdentifiant, oPassword){
	// si identifiant et mot de passe <> ''
	if(oIdentifiant.value != '' && oPassword.value != ''){
		var sSubmitLink = document.getElementById('action_handler').value + 'Identifiant=' + oIdentifiant.value + '&Password=' + oPassword.value;
	}
	else{
		var sSubmitLink = '';
	}
    
	document.getElementById('formLoginEspaceAffilie').action = sSubmitLink;
}

function identification_affilie(){
	if(document.getElementById('identifiant').value == ''){
		alert('Veuillez indiquer votre numéro d\'affilié');
		return false;
	}
	else if(document.getElementById('password').value == ''){
		alert('Veuillez indiquer votre mot de passe');
		return false;
	}
	else{
		return true;
	}
}
