function Focused(x)
{
  var object=document.getElementById(x);
  object.style.background="#ffff99";
  if (object.type != "submit") {
  	object.select();
  }
}

function Blurred(x)
{
  document.getElementById(x).style.background="#b1c3e5";
}
