function showPasswordField() 
{ 
	document.getElementById("divText").style.display = "none"; 
	document.getElementById("divPassword").style.display = "block"; 
	document.getElementById("txtPassword").focus(); 
	} 
var first = 0;

function hideText(elt) 
{ 
if(first != 1)
elt.value = ""; 
first = 1;
}

function init(){ document.getElementById('divPassword').style.display = 'none'; }

/*window.onload = init ;*/


