
	function setfocus() { 
		document.getElementById("userName").focus(); 
	}
	
	
	function navChange(sectionID){
	var headline=document.getElementById("appLoc");
	var holder=new Array('Application Process: <span class="style6">Step 1. Company Profile</span>','Application Process: <span class="style6">Step 2. Billing Information </span>','Application Process: <span class="style6">Step 3. Credit Information </span>','Application Process: <span class="style6">Step 4. Banking and Trade References </span>','Application Process: <span class="style6">Step 5. Authorized Contact </span>','Application Process: <span class="style6">Step 6. Finish &amp; Submit</span>'); 
	headline.innerHTML=holder[sectionID-1];
	

	
	}
	function startApp(){
		var ctype1 = document.getElementById("ctype1");
		var ctype2 = document.getElementById("ctype2");
		var ctype3 = document.getElementById("ctype3");
		
		var prog = "";
		
		if(ctype1.checked)
			prog = ctype1.value;
		else if(ctype2.checked)
			prog = ctype2.value;
		else if(ctype3.checked)
			prog = ctype3.value;
		
			
		document.location.href="profile.php?type="+prog;
		
	}
