Hello, recently I constructed a website intent for being accessible by disabled users with just one button...enter. Basically my navigation consists of submit buttons which automatically are 'looped' through every 1.5 seconds. The thing is, the website administrator needs to be able to adjust the speed of the looping therefore I need to call it from the database. As you can see in the code below the speed is set to 1500. What do I need to write in there to call that number from a database say for example called 'buttons.mdb' in a table called 'navigation' in a field called 'time'?
I'd really appreciate your help on this, gotta present the website on monday afternoon

Thanks!
Here is the code as at the minute:
Code:
<script>
function pressTab(name)
{
var elem = document.getElementById(name);
elem.focus();
return;
}
function init(name){
setTimeout("pressTab('"+name+"')",1500);
return;
}
function MM_goToURL() { //v3.0
var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
for (i=0; i<(args.length-1); i+=2) window[args[i]].location=args[i+1];
}
</script>