function dividi_cifre(numero)
{
var cifre = new Array(2)
cifre[0]=parseInt(numero/10)
cifre[1]=numero-(cifre[0]*10)
return (cifre)
}
