window.onload = focusForm;
function focusForm() {
	var formField = "from";
	if (document.getElementById(formField)) {
		document.getElementById(formField).focus();
	}
}

function activeBorder(item) {
	document.getElementById(item).style.border="1px solid red";
}
function normalBorder(item) {
	document.getElementById(item).style.border="1px solid #646464";
}