
// JavaScript Document
var tolock=0;
function goaction(act,nform,dato1,dato2,dato3,dato4){
            switch(act){
            case 'SUCCESSIVO': // Successivo
					/* FrontPage_Form1_Validator(nform)  */     
                	if (tolock==0 && FrontPage_Form1_Validator(nform)==true){
						tolock=1;
            			nform.action = "inviamail.asp?lang=fra"
            			nform.target = "_self"
            			/* nform.m_act.value="SUCCESSIVO" */
            			nform.submit();
        			}
                        break;
            } // Fine switch()
} // Fine Function goaction()
