<!-- Based on FTP log in by:  Reinout Verkerk -->
<!-- Original:  Gordon Hudson (sales@hostroute.com) -->
<!-- Web Site:  http://www.hostroute.com/ -->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function Login(form) {
var username = form.username.value;
var password = form.password.value;
var server = form.server.value;
var id = username;
if (username && password && server) {
var htsite = "https://" + username + ":" + password  + "@" + server + id;
window.location = htsite;
}
else {
alert("Please enter your username and password.");
   }
}
//  End -->