function highlight(divid)
{
	document.getElementById(divid).style.borderColor = "#FB6D04";
	document.getElementById(divid).style.color = "#FB6D04";
}

function restore(divid)
{
	document.getElementById(divid).style.borderColor = "#0676E6";
	document.getElementById(divid).style.color = "#0676E6";
}

function showLoginForm()
{
	document.getElementById('logForm').style.display = "block";
	document.getElementById('Login_form').style.display = "block";
}
