function AlertAndHighlight(msg, form, formName, element)
{
	alert(msg);
	form.elements[element].focus();
	form.elements[element].style.backgroundColor = '#3366BB';
	setTimeout("document." + formName + ".elements['" + element + "'].style.backgroundColor = 'white';", 400);
}