//Auto tabbing script- By JavaScriptKit.com
//http://www.javascriptkit.com
//This credit MUST stay intact for use


function autotab(original,destination){
if (original.getAttribute&&original.value.length==original.getAttribute("maxlength"))
destination.focus();
}


//

function showText(showme) {
	document.getElementById("form_step1").style.display = "none";
	document.getElementById("form_step2").style.display = "none";
	document.getElementById(showme).style.display = "block";
}
