var staffPortlet = {}; 

function alpha(e) {
	var k;
	document.all ? k = e.keyCode : k = e.which;
	return ((k > 47 && k < 58));
}

function goToWithNtification(url){	
	var hasil = confirm("Are you sure?");
	if(hasil){
		window.location.href = url
	}
}

function submitSel(){
	document.getElementById("selectForm").submit();
}

staffPortlet.submitSearchValidate = function(){

	if(document.getElementById('name').value==''){
		return false;
	}
	return true;
}