function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function validateForm(x){
    x = x.split(",");
    var y = 0;
    for (var i = 0; i < x.length; i++) {
        var t = x[i];
        var tt = t.split("_");
        var v = document.getElementById(t).value;
        if (v.toLowerCase() != tt[1]) {
            y++;
        }
    }
    if (y == 4) {
        return true;
    } else {
        return false;
    }
}
