function validData() {

if (document.frmReg.lokasi.value == "" ) {
				alert("Masukkan lokasi kerja Anda !")
				document.frmReg.lokasi.focus()
				}

else if (document.frmReg.alamat.value == "" ) {
				alert("Masukkan Alamat rumah Anda !")
				document.application.alamat.focus()
				}

else if (document.frmReg.telepon.value == "" ) {
				alert("Masukkan telepon kantor Anda !")
				document.frmReg.telepon.focus()
				}
				
else if (document.frmReg.email.value == "" ) {
				alert("Masukkan Email Anda !")
				document.frmReg.email.focus()
				}					
else if (document.frmReg.ibu.value == "" ) {
				alert("Siapa nama ibu Anda?")
				document.frmReg.ibu.focus()
				}
				
else if (document.frmReg.password.value == "" ) {
				alert("Masukkan Password pilihan Anda !")
				document.frmReg.password.focus()
				}								
else {
			document.frmReg.action="member_act_register.asp";
		document.frmReg.submit(); 
	}

}