
function openOrClose(theDiv,forceOpen)
{if(theDiv&&document.getElementById(theDiv))
{if(forceOpen||document.getElementById(theDiv).style.display=="none")
{document.getElementById(theDiv).style.display="block";}
else
{document.getElementById(theDiv).style.display="none";}}}
function updateField(fieldName,newValue)
{document.getElementById(fieldName).innerHTML=newValue;}
function submitAction(target,action)
{document.form.action.name=target;document.form.action.value=action;document.form.submit();}
function loginForgottenPassword()
{if(document.getElementById('username'))
{var url="/registration/login/forgottenpassword?forgottenPasswordUsername="
+document.getElementById('username').value+"&location="+document.location;document.location=url;}}