<!--
function authenticateUser(username, passwd) {
 newUser = document.all["newUser"];
 newUser.value ="username";
 newUser.name = "j_user";

 pass = document.all["passw"];
 pass.name = "j_password";
 pass.value = ""; // poprawka T.K. 18.02.2004
 
 redirect = document.all["redirect"]; 
redirect.value = "http://"+document.location.hostname+"/cms/files/intranet/klient.html";



 f = document.all["loginForm"];
 //f.action ="http://forteo4.forte.com.pl/login/login.html";
//f.action ="http://"+document.location.hostname+"/cms/login.html";
f.action ="http://192.168.28.6/cms/login.html";
 f.method = "POST";
 f.submit();
}
-->