var password = ''
function login(x)
{
password=prompt('Please enter your password:','');
if (password == false)
{
alert('You need a passwort in order to enter this site.');	
}
else
{
window.open(password +x+'.html','logged','toolbar=1,location=0,status=0,menubar=0,scrollbars=auto,resizable=1,width=screen.width,height=screen.height');
//location.href= password + "/index.html";
}
}