function disappear(){
    document.getElementById("Load1").style.display = "none";
    document.getElementById("Load2").style.display = "none";
    document.getElementById("Load3").style.display = "none";
    document.getElementById("Load4").style.display = "none";
}
function appear(n){
    disappear();
	switch(n){
        case 1: document.getElementById("Load1").style.display = "";
                document.getElementById("LoadHeader").innerHTML="Step 1 of 3 - Please SELECT Load Amount" 
                break;
		case 2: document.getElementById("Load2").style.display = "";
                document.getElementById("LoadHeader").innerHTML="Step 2 of 3 - Please ENTER your Account Number" 
                break;
		case 3: document.getElementById("Load3").style.display = "";
                document.getElementById("LoadHeader").innerHTML=".: Verifying Account Number :." 
                break;
		case 4: document.getElementById("Load4").style.display = "";
                document.getElementById("LoadHeader").innerHTML="Step 3 of 3 - Confirm Account Loading" 
                break;
        }
}
function amount(n){
    appear(2);
    var form = document.LoadForm;
    form.tbxAmount.value=n;
    if (n < 200){form.tbxAmount.focus();}
    else{form.tbxAccountNo.focus();}
}
function fK(k){
    var trapString = "";
    var key=(typeof event!='undefined')?window.event.keyCode:e.keyCode;
    var dontblock = String.fromCharCode(8) + String.fromCharCode(46) + String.fromCharCode(37) + String.fromCharCode(38) + String.fromCharCode(39) + String.fromCharCode(40) + String.fromCharCode(13);
    if (k=="s"){trapString = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ.," + dontblock}
    else if (k=="n"){trapString = "1234567890" + dontblock}
    if (trapString.indexOf(String.fromCharCode(key)) == - 1) {event.returnValue = false;}
}