function checkBlur(e, text) { if(e.value == '') { e.value = text; } } 
function checkInput(e, text) { if(e.value == text) { e.value = ''; } } 
function toggle(id) { if(document.getElementById(id).style.display == 'none' || document.getElementById(id).style.display == '') { document.getElementById(id).style.display = "block"; return; } document.getElementById(id).style.display = "none"; } 
function updateText(cur) { var pr = 'start by completing';  if(cur == '2') { pr = 'continue by completing'; } else if(cur == '3') { pr = 'complete'; } document.getElementById('pagereqlabel').innerHTML = pr; if(document.getElementById('next3')) { document.getElementById('next3').text = 'Finish'; document.getElementById('next3').textContent = 'Finish'; } } function go(url) { window.open(url); }

