function CheckIt()  {
var done=0;
var cPassword = document.forms[0].password.value;
var username = document.forms[0].username.value;


if (username=="compunet" && cPassword=="lab") { window.location="http://www.weilerwelding.com/shopsite_sc/store/html/compunet.html"; done=1; }
if (username=="compunet" && cPassword=="fog") { window.location="http://www.weilerwelding.com/shopsite_sc/store/html/compunet.html"; done=1; }
if (username=="delphi" && cPassword=="socket") { window.location="http://www.weilerwelding.com/shopsite_sc/store/html/delphi.html"; done=1; }
if (username=="udchem" && cPassword=="chem") { window.location="http://www.weilerwelding.com/shopsite_sc/store/html/UDChem.html"; done=1; }
if (username=="mumchem" && cPassword=="miami") { window.location="http://www.weilerwelding.com/shopsite_sc/store/html/mum.html"; done=1; }
if (username=="lord" && cPassword=="mechanical") { window.location="http://www.weilerwelding.com/shopsite_sc/store/html/lord.html"; done=1; }
if (username=="udri" && cPassword=="nitrogen") { window.location="http://www.weilerwelding.com/shopsite_sc/store/html/UD.html"; done=1; }
if (username=="pdsi" && cPassword=="spotweld") { window.location="http://www.weilerwelding.com/shopsite_sc/store/html/PDSI.html"; done=1; }
if (username=="revco" && cPassword=="gloves") { window.location="http://www.weilerwelding.com/shopsite_sc/store/html/Revco.html"; done=1; }
if (username=="amtr" && cPassword=="wallace") { window.location="http://www.weilerwelding.com/shopsite_sc/store/html/AMTR.html"; done=1; }
if (username=="midwest" && cPassword=="fabricators") { window.location="http://www.weilerwelding.com/shopsite_sc/store/html/MDW.html"; done=1; }
if (username=="janet estep" && cPassword=="lordcorp") { window.location="http://www.weilerwelding.com/shopsite_sc/store/html/lord.html"; done=1; }
if (username=="meijer" && cPassword=="hilo") { window.location="http://www.weilerwelding.com/shopsite_sc/store/html/meijer.html"; done=1; }
if (done==0) { alert("Invalid login!"); }
}