// JavaScript Document
function display(action)
{
if (action == 'show')
{
document.getElementById("login").style.height = "43px";
document.getElementById("logindetails").style.display = "";
document.getElementById("login_register").href= "javascript:display('hide')";
}

if (action == 'hide')
{
document.getElementById("login").style.height = "3px";
document.getElementById("logindetails").style.display = "none";
document.getElementById("login_register").href= "javascript:display('show')";
}
}

