function Login(){
var done=0;
var username=document.login.username.value;
username=username.toLowerCase();
if (username=="hypno") { window.location="/Concepts/Hypno/"; done=1; }
if (username=="djchrisb") { window.location="/Concepts/DJ Chris B/"; done=1; }
if (username=="psheok") { window.location="/Concepts/PSHEOK/"; done=1; }
if (username=="rugbybid") { window.location="/Concepts/BID/"; done=1; }
if (username=="rugbypainters") { window.location="/Concepts/RugbyPainters/"; done=1; }
if (username=="inspirationallabels") { window.location="index.php?/ins-lab-concept.html"; done=1; }
if (username=="nikilus") { window.location="index.php?/concept-nikilus.html"; done=1; }
if (done==0) { alert("Invalid Company Name. Please contact your advisor for more information."); }
}