function selectAll(id)
{
	document.getElementById(id).focus();
	document.getElementById(id).select();
}

function typeToPassword(id)
{
  document.getElementById(id).focus();
  document.getElementById(id).select();
  document.getElementById(id).type = 'password';
  document.getElementById(id).value = '';
}


