﻿function navigate(type)
{

if(type == "LOGIN")
    {
    alert("login");
    location.href = "home.htm";
    }
else if(type=="REGISTER")
{
  alert("registration");
  location.href = "home.htm"; 
}    

}

