HTML JavaScript DHTML

 
 
Navigation Bar 
 
function goNext() { 
    var currOffset = parseInt(parent.currTitle); 
    
    if (currOffset < 5) { 
        currOffset += 1; 
        parent.entryForms.location.href =  currOffset + ".htm"; 
        parent.instructions.location.hash = currOffset; 
    } else { 
        alert("This is the last form."); 
    } 

function goPrev() { 
    var currOffset = parseInt(parent.currTitle); 
    if (currOffset > 1) { 
        currOffset -= 1; 
        parent.entryForms.location.href = currOffset + ".htm"; 
        parent.instructions.location.hash = currOffset; 
    } else { 
        alert("This is the first form."); 
    }