// JavaScript Document

function LogIn(){
var name = document.login.username.value;
var pass = document.login.password.value;
if (name == "heath" && pass == "bartosh")
{
window.location="http://www.nomadecology.com/clients/heath/index.htm";
}
else if (name == "jerry" && pass == "roe")
{
window.location="http://www.nomadecology.com/clients/jerry/index.htm";
}
else if (name == "goldfinch" && pass == "nec159357")
{
window.location="http://www.nomadecology.com/clients/jeffersonmartin/index.htm";
}
else if (name == "mtdiablo" && pass == "nec342256")
{
window.location="http://www.nomadecology.com/clients/mosaic/index.htm";
}
else if (name == "salamander" && pass == "nec14753")
{
window.location="http://www.nomadecology.com/clients/toddroad/index.htm";
}
else
{
window.location="http://www.nomadecology.com/login/error.htm";
}
}
