// JavaScript Document
/*added by anshu on 8_07_09*/

/*this fun is to change the type to password when clicked*/
function login_password(pass)
{
	if(pass=="Password")
	{
		document.getElementById('password').value="";
		document.getElementById('password').type='password';
	}
}

function onFocusHandler_p(fld){
	fld.style.display = 'none';
	var fld2 = (document.getElementById) ? document.getElementById('password') : document.all['password'];
	fld2.style.display = 'block';
	fld2.focus();
	return true;
}
function onBlurHandler_p(fld){
	if(fld.value === ''){
		fld.style.display = 'none';
		var fld2 = (document.getElementById) ? document.getElementById('fauxPassword') : document.all['fauxPassword'];
		fld2.style.display = 'block';
	}
	return true;
}

