
function switchto(q){
    if (q){
        document.getElementById('passwordtext').style.display="none";
        document.getElementById('password').style.display="inline";
        document.getElementById('password').focus();
    } else {
        document.getElementById('password').style.display="none";
        document.getElementById('passwordtext').style.display="inline";
    }
}
document.write("<form action=\"http://www.dailyfreegames.com/js/loginlib.php\" method=post onsubmit=\"return fetchdoLogin(this);\" style=\"margin:-9px 0px 0px 0px;padding:0px;\">");document.write("<table border='0' width=495 align=center><tr valign=middle><td valign=middle><input name=vb_login_username type=text id=navbar_username value=\"username\" onfocus=\"if (this.value == 'username') this.value = '';\" onblur=\"if (this.value=='') this.value='username'\" size=17 /></td>");document.write("<td valign=middle><input name=vb_login_password2 value='password' type=text id=passwordtext onfocus=\"switchto(1);\" size=22 />");document.write("<input name=vb_login_password value='' type=password id=password onblur=\"if (this.value=='') switchto(0);\" size=22 style=\"display:none\" /></td>");document.write("<td valign=middle><input type=submit title=\"enter username to login\" value=\"Login\" /></td><td align=right valign=middle><input name=cookieuser type=checkbox id=cb_cookieuser_navbar value=1 checked=checked />Save Login?<br/><a href=\"http://forums.dailyfreegames.com/register.php?s=\" target=\"_parent\" onclick=\"showSignupForm(this); return false; \"><b>JOIN & WIN</b></a></td></tr></table></form>");