﻿

function jumpEnter() {
    if (event.keyCode == 13) {
        //event.keyCode=9;
       // initVariables(); callMainService_Live(0);
        //event.keyCode=13;
    }

} //jumpEnter


function prevResults() {

    //var textBoxIndex = document.getElementById("RadToolBar1_i6_txtRad")
    var textBoxIndex = document.getElementById("txtIndex")
    textBoxIndex.value = parseInt(textBoxIndex.value) - 20;

    if (textBoxIndex.value < 0)
        textBoxIndex.value = 0;
    // textBoxIndex.focus();

    // alert(textBoxIndex.value);

}

function nextResults() {
   
    //var textBoxIndex = document.getElementById("RadToolBar1_i6_txtRad")
    var textBoxIndex = document.getElementById("txtIndex")
    textBoxIndex.value = parseInt(textBoxIndex.value) + 20;
   // textBoxIndex.focus();

   // alert(textBoxIndex.value);

}

function resetResults() {

    //var textBoxIndex = document.getElementById("RadToolBar1_i6_txtRad")
    var textBoxIndex = document.getElementById("txtIndex")
    textBoxIndex.value = 0;
    // textBoxIndex.focus();

    // alert(textBoxIndex.value);

}



function GetTextBoxValue(id) {
    alert(document.getElementById("txtIndex").value);
}


