<!-- This version:  Hostroute.com -->
<!-- Based on FTP log in by:  Reinout Verkerk -->
<!-- Web Site:  http://www.hostroute.com/script_htaccess.html -->

<!-- Begin
function Login(form) {
var username = form.username.value;
var password = form.password.value;
var server = form.server.value;
if (username && password && server) {
var htsite = "http://" + username + ":" + password + "@" + server;
window.location = htsite;
}
else {
alert("Please enter your username and password.");
   }
}
//  End -->
