/**
 * submits the paging form
 * because it is submit with an anchor tag
 */
function submitPaging(){

    document.paging.submit();
}

/*
 * submit form from link
 */
function submitSingle(str){http://www.larrymccarty.com/reviews/lib/controller/search.php#

    document.forms[0].single_value.value = str;
    document.forms[0].submit();
}

function submitSingleRT(str){http://www.larrymccarty.com/reviews/lib/controller/search.php#

    document.forms[0].single_value_rt.value = str;
    document.forms[0].submit();
}

function submitTitlesPage(str){

    document.paging.offset_int.value = str;
    document.paging.submit();
}
