function highlightBorder(c, h)
{
	if(h)
		c.style.border = "solid 2px red";
	else
		c.style.border = "";	
}

function clear(f)
{
	var field = document.getElementById(f);
	field.value = "";
}

function goToPage ( locationAddress )
{
	window.location = locationAddress;
}