function loginSubmit(){var rutusuario=document.getElementById('ssousername1');var passw=document.getElementById('password');if(rutusuario.value!=""){if(passw.value!=""){if(!parent.frames.s2pFrame){document.loginForm.site2pstoretoken.value="";}else{var hw=parent.frames.s2pFrame.window;var hd=hw.document;var s2p=hd.forms.freshTokenForm.site2pstoretoken.value;document.loginForm.site2pstoretoken.value=s2p;}if ( valida_RUT(document.loginForm.ssousername,document.loginForm.ssousername1)){setCookie("ssousername",document.getElementById("ssousername1").value.replace(/\./g,''),"","/",".bicevida.cl");document.loginForm.submit();}}else{alert('Debe Ingresar su password');document.loginForm.password.focus();}}else{alert ('Debe Ingresar su R.U.T');document.loginForm.ssousername1.focus();}}function valida_RUT(theElement,theElement1,theMessage){var flg_retorno=false;theElement.value=theElement1.value;if(theElement.value==""){flg_retorno=true;}else{flg_retorno=validaInterno(theElement);}var rut=theElement.value;var drut="";var largo=rut.length;for(i=0;i<largo;i++){if(largo==10){if(i==2||i==5){drut=drut+"."+rut.charAt(i);}else{drut=drut+rut.charAt(i);}}if(largo==9){if(i==1||i==4){drut=drut+"."+rut.charAt(i);}else{drut=drut+rut.charAt(i);}}if(largo==8){if(i==3){drut=drut+"."+rut.charAt(i);}else{drut=drut+rut.charAt(i);}}}theElement1.value=drut;if(!flg_retorno){if(typeof theElementName=="undefined"){alert(" El RUT es incorrecto.");}else{alert(theMessage);}document.loginForm.ssousername1.focus();document.loginForm.ssousername1.select();}return flg_retorno;}function validaInterno(theElement){var tmpstr="";var rut=theElement.value;for(i=0;i<rut.length;i++){if(rut.charAt(i)!=" "&&rut.charAt(i)!="."&&rut.charAt(i)!="-"){tmpstr=tmpstr+rut.charAt(i);}}rut=tmpstr;largo=rut.length;tmpstr="";for(i=0;rut.charAt(i)=="0";i++){}for(;i<rut.length;i++){tmpstr=tmpstr+rut.charAt(i);}rut=tmpstr;largo=rut.length;if(largo<2){return false;}for(i=0;i<largo;i++){if(rut.charAt(i)!="0"&&rut.charAt(i)!="1"&&rut.charAt(i)!="2"&&rut.charAt(i)!="3"&&rut.charAt(i)!="4"&&rut.charAt(i)!="5"&&rut.charAt(i)!="6"&&rut.charAt(i)!="7"&&rut.charAt(i)!="8"&&rut.charAt(i)!="9"&&rut.charAt(i)!="k"&&rut.charAt(i)!="K"){return false;}}var invertido="";for(i=(largo-1),j=0;i>=0;i--,j++){invertido=invertido+rut.charAt(i);}var drut="";drut=drut+invertido.charAt(0);drut=drut+"-";cnt=0;for(i=1,j=2;i<largo;i++,j++){if(cnt==3){j++;drut=drut+invertido.charAt(i);cnt=1;}else{drut=drut+invertido.charAt(i);cnt++;}}invertido="";for(i=(drut.length-1),j=0;i>=0;i--,j++){invertido=invertido+drut.charAt(i);}theElement.value=invertido;if(checkDV(rut)){return true;}return false;}function checkDV(crut){largo=crut.length;if(largo<2){alert("Debe ingresar el RUT completo.");return false;}if(largo>2){rut=crut.substring(0,largo-1);}else{rut=crut.charAt(0);}dv=crut.charAt(largo-1);checkCDV(dv);if(rut==null||dv==null){return 0;}var dvr="0";suma=0;mul=2;for(i=rut.length-1;i>=0;i--){suma=suma+rut.charAt(i)*mul;if(mul==7){mul=2;}else{mul++;}}res=suma%11;if(res==1){dvr="k";}else{if(res==0){dvr="0";}else{dvi=11-res;dvr=dvi+"";}}if(dvr!=dv.toLowerCase()){return false;}return true;}function checkCDV(dvr){dv=dvr+"";if(dv!="0"&&dv!="1"&&dv!="2"&&dv!="3"&&dv!="4"&&dv!="5"&&dv!="6"&&dv!="7"&&dv!="8"&&dv!="9"&&dv!="k"&&dv!="K"){return false;}return true;}
function setCookie(name,value,expires,path,domain,secure){document.cookie=name+"="+escape(value)+(expires?";expires="+expires.toGMTString():"")+(path?";path="+path:"")+(domain  ? "; domain=" +domain : "")+
(secure?";secure":"");}
