window.onLoad=none()

function none()
{	
	//Clears out other Field
	document.Alumni.stdCourse.value="";
	document.Alumni.stdCollege.value="";
	document.Alumni.stdCity.value="";
	
	document.Alumni.profession[0].checked=false;
	document.Alumni.profession[1].checked=false;
	document.Alumni.Org.value="";
	document.Alumni.OrgDesig.value="";
	document.Alumni.OrgAdd.value="";
	document.Alumni.orgContact.value="";
	
	//Selection confirmed
	document.Alumni.profile[0].checked=true;
	
	//Disable All
	document.Alumni.stdCourse.disabled=true;
	document.Alumni.stdCollege.disabled=true;
	document.Alumni.stdCity.disabled=true;
	document.Alumni.profession[0].disabled=true;
	document.Alumni.profession[1].disabled=true;
	document.Alumni.Org.disabled=true;
	document.Alumni.OrgDesig.disabled=true;
	document.Alumni.OrgAdd.disabled=true;
	document.Alumni.orgContact.disabled=true;
}

function std()
{
	//Clears out other Field
	document.Alumni.profession[0].checked=false;
	document.Alumni.profession[1].checked=false;
	document.Alumni.Org.value="";
	document.Alumni.OrgDesig.value="";
	document.Alumni.OrgAdd.value="";
	document.Alumni.orgContact.value="";
	
	//Selection confirmed
	document.Alumni.profile[1].checked=true;
	
	document.Alumni.stdCourse.disabled=false;
	document.Alumni.stdCollege.disabled=false;
	document.Alumni.stdCity.disabled=false;
	
	document.Alumni.profession[0].disabled=true;
	document.Alumni.profession[1].disabled=true;
	document.Alumni.Org.disabled=true;
	document.Alumni.OrgDesig.disabled=true;
	document.Alumni.OrgAdd.disabled=true;
	document.Alumni.orgContact.disabled=true;
	
}

function prof()
{	
	//Clears out other Field
	document.Alumni.stdCourse.value="";
	document.Alumni.stdCollege.value="";
	document.Alumni.stdCity.value="";
	
	//Selection confirmed
	document.Alumni.profile[2].checked=true;
	
	document.Alumni.profession[0].disabled=false;
	document.Alumni.profession[1].disabled=false;
	document.Alumni.Org.disabled=false;
	document.Alumni.OrgDesig.disabled=false;
	document.Alumni.OrgAdd.disabled=false;
	document.Alumni.orgContact.disabled=false;
	
	document.Alumni.stdCourse.disabled=true;
	document.Alumni.stdCollege.disabled=true;
	document.Alumni.stdCity.disabled=true;
	
}
