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;
}


function onFocusHandler_p2(fld3){
	fld3.style.display = 'none';
	var fld4 = (document.getElementById) ? document.getElementById('password') : document.all['password'];
	fld4.style.display = 'block';
	fld4.focus();
	return true;
}
function onBlurHandler_p2(fld3){
	if(fld3.value === ''){
		fld3.style.display = 'none';
		var fld4 = (document.getElementById) ? document.getElementById('fauxPassword2') : document.all['fauxPassword2'];
		fld4.style.display = 'block';
	}
	return true;
}