<!--
function login_client(param1, param2)
{
var thepassword, theclient
theclient=param1.toLowerCase();
thepassword=param2.toLowerCase();
window.location.href= 'clients/'+theclient+'/'+thepassword+'.html';

//these lines check the work.
//document.write(thepassword);
//document.write(theclient);
//document.write(theclient+'/'+thepassword+'.html');

}
//-->