function Required(obj,msg){
	
	if(1 > $(obj).val().length){
		alert(msg);
		$(obj).focus();
		return false;
	}
	return true;
}