function raiseError(error, field) {
	alert(error);
	if (typeof field != 'undefined') {
		field.focus();
	}
	return false;
}
