function validate(theObj){
	if(document.getElementById("theform1")["theform1:appType"][0].checked == false && document.getElementById("theform1")["theform1:appType"][1].checked == false && document.getElementById("theform1")["theform1:appType"][2].checked == false){
		alert("Please select the option you are applying for");
		document.getElementById("theform1")["theform1:appType"][0].focus();
		return false;
	}
	return true;
}
