
DOMViewerName ='accountmanager';

function resetError( f )
{
        f.parentNode.parentNode.nextSibling.firstChild.innerHTML='';
        f.parentNode.parentNode.nextSibling.style.display='none';
        f.style.background='white';
}

function setError( f, text )
{
        f.parentNode.parentNode.nextSibling.firstChild.innerHTML='&#9658; '+text;
        f.parentNode.parentNode.nextSibling.style.display='';
        //f.style.background='#faf0f0';
	f.style.background='#fafac0';
}

function setError1( f, text, errors )
{
	setError( f, text );
	if ( errors==0 ) f.focus();
}
