

function Validate(){

username = document.frmLogin.UserName.value;
password = document.frmLogin.Password.value;

if (( username == "") | ( password =="")) {
alert("Please enter both username and password, then click 'GO to plans'")
}
else
{

if (username == "restoration professionals") 
{
if (password == "koenig3941"){
location = "http://www.koenigbrothers.com/restorationprofessionals.html"
}
else
{
alert("Your password is incorrect.  Please try again.")
}
}

else if (username == "tc homes")
{
if (password == "koenig3938"){
location = "http://www.koenigbrothers.com/tchomes.html"
}
else
{
alert("Your password is incorrect.  Please try again.")
}
}

else if (username == "maple leaf")
{
if (password == "koenig3935"){
location = "http://www.koenigbrothers.com/mapleleaf.html"
}
else
{
alert("Your password is incorrect.  Please try again.")
}
}

else if (username == "koenig")
{
if (password == "1234"){
location = "http://www.koenigbrothers.com/bobberglund.html"
}
else
{
alert("Your password is incorrect.  Please try again.")
}
}

else if (username == "core design")
{
if (password == "koenig3926"){
location = "http://www.koenigbrothers.com/coredesign.html"
}
else
{
alert("Your password is incorrect.  Please try again.")
}
}

else if (username == "Parent")
{
if (password == "koenig3923"){
location = "http://www.koenigbrothers.com/parent.html"
}
else
{
alert("Your password is incorrect.  Please try again.")
}
}

else if (username == "maple leaf")
{
if (password == "koenig3920"){
location = "http://www.koenigbrothers.com/mapleleaf"
}
else
{
alert("Your password is incorrect.  Please try again.")
}
}

else if (username == "trilogy homes")
{
if (password == "koenig3932"){
location = "http://www.koenigbrothers.com/trilogyhomes.html"
}
else
{
alert("Your password is incorrect.  Please try again.")
}
}

else {
alert("Your login information is incorrect.  Please try again.")
}
}

}
