function GoToCo(){
loggedin=false;
companyname="";
companyname=prompt("Type Company Name and press Enter:","");
companyname=companyname.toLowerCase();
fourc=companyname.substring(0,4);
threec=companyname.substring(0,3);
twoc=companyname.substring(0,2);


if (threec=="aqm"){
loggedin=true;
window.location="aqm/aqm.html";
}

if (fourc=="chad" || companyname=="chadwicks"){
loggedin=true;
window.location="chadwicks/chadwicks.html";
}

if (fourc=="camb" || companyname=="cambridge systematics"){
loggedin=true;
window.location="cambridgesystematics/cambridgesystematics.html";
}

if (threec=="eps"){
loggedin=true;
window.location="eps/eps.html";
}

if (fourc=="dunb" || companyname=="dunbar" ){
loggedin=true;
window.location="dunbar/dunbar.html";
}

if (fourc=="echo"){
loggedin=true;
window.location="echo/echo.html";
}

if (fourc=="fami" || companyname=="fsgb" || companyname=="family service" ){
loggedin=true;
window.location="fsgb/fsgb.html";
}

if ( companyname=="globe" || companyname=="boston globe" || companyname=="the boston globe"){
loggedin=true;
window.location="bostonglobe/bostonglobe.html";
}

if ( companyname=="global" || companyname=="globalcompanies" || companyname=="global companies"){
loggedin=true;
window.location="globalcompanies/globalcompanies.html";
}

if (threec=="hcf" || companyname=="health care" || companyname=="health care finance"){
loggedin=true;
window.location="healthcarefinance/hcf.html";
}

if (fourc=="hcst" || companyname=="hcstarck" || fourc=="h.c."){
loggedin=true;
window.location="hcstarck/hcstarck.html";
}

if (fourc=="high"){
loggedin=true;
window.location="highliner/highliner.html";
}

if (threec=="isa" || fourc=="isaa" || fourc=="lcmc"){
loggedin=true;
window.location="isaacson/isaacson.html";
}

if (fourc=="lynn" || fourc=="lchc" || fourc=="lcmc"){
loggedin=true;
window.location="lynn/lynn.html";
}

if (fourc=="mass" || fourc=="mdph" || threec=="dph"){
loggedin=true;
window.location="mdph/mdph.html";
}

if (fourc=="mcki" || companyname=="mckinsey" ){
loggedin=true;
window.location="mckinsey/mckinsey.html";
}

if (fourc=="midd"){
loggedin=true;
window.location="middleton/middleton.html";
}

if (fourc=="mvrt"){
loggedin=true;
window.location="mvrta/mvrta.html";
}

if (fourc=="navi"){
loggedin=true;
window.location="navic/navic.html";
}

if (fourc=="neob" || companyname=="new england organ bank"){
loggedin=true;
window.location="neob/neob.html";
}

if (fourc=="oldm" || companyname=="oldmutual" || companyname=="old mutual"){
loggedin=true;
window.location="oldmutual/oldmutual.html";
}

if (threec=="psi"){
loggedin=true;
window.location="psi/psi.html";
}


if (fourc=="test"){
loggedin=true;
window.location="test/test.html";
}

if (threec=="tjx" || fourc=="mars" || companyname=="aj wright" || companyname=="home goods" || companyname=="tj maxx"){
loggedin=true;
window.location="tjx/tjx.html";
}

if (fourc=="what" || companyname=="whatman"){
loggedin=true;
window.location="whatman/whatman.html";
}

if (fourc=="winc"){
loggedin=true;
window.location="winchester/winchester.html";
}

if (loggedin==false) {
alert("Company Name not recognized");
}
}


