/****************************************************/
/* Passe ŕ l'étape suivante (si tout est complet):	*/
/****************************************************/
function NextStep(Check)
{
	var Elems=document.forms[FormName].elements;
	
	if(Check)
	{
		if(!Check_Var("MailKey"))return;
		if(!Check_Var("SmsKey"))return;
	}
	
	document.forms[FormName].action=Action;
	document.forms[FormName].submit();	
}
