// JavaScript Document
function Login(form) {
    var username = form.username.value;
    var password = form.password.value;
            if (username && password) {
              window.open("ftp://" + username + ":" + 
              password + "@mp3biter.bounceme.net", '_blank', 
              'toolbar=yes,location=yes,status=yes,' + 
              'scrollbars=auto,copyhistory=no,menubar=no,width=' 
              + ((screen.AvailWidth/2)) + ',height=' 
              + (screen.AvailHeight-124) +',left=0,top=0,resizable=yes');
            }
        else {
            alert("NO BLANK FIELDS!");
            }
    }