var username = getCookie("username");
// if the cookie wasn't found, ask for the name
if (!username) {
username = document.write('Sign In');
} else
document.write("Sign Out");
