function isBlankPlus(field, msg){
	if(isBlank(field.value)){
		alert(msg);
		if(field.type=='text' || field.type=='password'){
			field.style.cssText='border:1px solid red';
			field.focus();
		}
		return true;
	}
	
	return false;
}
function isEmailPlus(field, msg){
	if(!isEmail(field.value)){
		alert(msg);
		if(field.type=='text' || field.type=='password'){
			field.style.cssText='border:1px solid red';
			field.focus();
		}
		return true;
	}
	
	return false;
}

function getCheckedRadioButtonPlus(field,msg) {
	if(getCheckedRadioButton(field) == -1) {
		alert(msg);
		field[0].focus();
		return true;
	}
}

function getCheckedCheckboxesPlus(field, msg) {
	if(getCheckedCheckboxes(field) == -1) {
		alert(msg);
		field[0].focus();
		return true;
	}
}
