﻿// Change view of Tabs
function changeContant(val)
{
    document.getElementById("tab_watch").className = "float_side tabs";
    document.getElementById("tab_rate").className = "float_side tabs";
    document.getElementById("tab_comment").className = "float_side tabs";

    document.getElementById("watch").className = "d_none";
    document.getElementById("rate").className = "d_none";
    document.getElementById("comment").className = "d_none";
    
    document.getElementById("tab_"+val).className = "float_side tabs tab_no_bottom";
    document.getElementById(val).className = "w_100 d_block";
}

// Auto tab when fill car number
function autotab(current,to)
{
    if (current.getAttribute && current.value.length==current.getAttribute("maxlength"))
    {
        to.focus()
    }
}

// RegExp for Numbers Only
function noAlpha(obj)
{
    reg = /[^0-9,מ,צ,c,d,u,n,C,D,U,N]/g;
    obj.value =  obj.value.replace(reg,"");
}

// RegExp for No Script
function noScript(obj)
{
    reg = /[^0-9,a-z,A-Z,א-ת,-,.,_]/g;
    obj.value =  obj.value.replace(reg,"");
}

