<!-- Original:  Reinout Verkerk -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

function login(form) {
var username = form.username.value;
var password = form.password.value;
if (username && password) {
var ftpsite = "ftp://" + username + ":" + password + "@ftp.nor-pacseating.com";
window.location = ftpsite;
}
else {
alert("Sorry, that username/pass combination did not work. Please try again.");
   }
}
