function changeTextToPass (textId,passId)
{
	var theTextBox = document.getElementById(textId);
	var thePassBox = document.getElementById(passId);
    theTextBox.className = 'hide';
    thePassBox.className = 'password_in none_border px10 p2t';
    thePassBox.focus(); 
}
function restorePassToText (passId, textId)
{
	var thePassBox = document.getElementById(passId);
	var theTextBox = document.getElementById(textId);
	if (thePassBox.value == "")
	{
	  theTextBox.className = 'password_in none_border px10 p2t';
      thePassBox.className = 'hide';		
	}
}