var current_step = "ReqFirstStep";
function step_swapper(step) {
document.getElementById(current_step).style.display = "none";
document.getElementById(step).style.display = "inline";
current_step = step;
}
