function InputFocus(field) {
	document.getElementById('input_'+field.name).style.background = '#fff6ca';
	document.getElementById('input_'+field.name).style.border = '0px';
	document.getElementById('input_'+field.name).style.borderWidth = '0px';
	field.style.border = '2px solid #eed971';
}

function InputBlur(field) {
	document.getElementById('input_'+field.name).style.background = '#fff';
	document.getElementById('input_'+field.name).style.border = '0px';
	document.getElementById('input_'+field.name).style.borderWidth = '0px';
	field.style.border = '2px solid #d4d4d4';
}
