function isAlphabet(elem, helperMsg){
	var alphaExp = /^[0-9a-zA-Z_ ]+$/;
	if(elem.value.match(alphaExp)){
		return true;
	}else{
		alert(helperMsg);
		elem.focus();
		return false;
	} 

}