// JavaScript Document

function Login(){
var done=0;
var username=document.login.username.value;
var password=document.login.password.value;
if (username=="radiomed" && password=="coil") { window.location="client_radiomed.php"; done=1; }
if (username=="RadioMed" && password=="coil") { window.location="client_radiomed.php"; done=1; }
if (username=="RadioMed" && password=="Coil") { window.location="client_radiomed.php"; done=1; }
if (username=="RADIOMED" && password=="COIL") { window.location="client_radiomed.php"; done=1; }

if (username=="DUSA" && password=="levulan") { window.location="client_dusa.php"; done=1; }
if (username=="DUSA" && password=="LEVULAN") { window.location="client_dusa.php"; done=1; }
if (username=="dusa" && password=="levulan") { window.location="client_dusa.php"; done=1; }
if (username=="dusa" && password=="LEVULAN") { window.location="client_dusa.php"; done=1; }

if (username=="Sicel" && password=="DVS") { window.location="client_sicel.php"; done=1; }
if (username=="sicel" && password=="DVS") { window.location="client_sicel.php"; done=1; }
if (username=="sicel" && password=="dvs") { window.location="client_sicel.php"; done=1; }
if (username=="Sicel" && password=="dvs") { window.location="client_sicel.php"; done=1; }

if (username=="nucletron" && password=="focos") { window.location="client_nucletron.php"; done=1; }
if (username=="Nucletron" && password=="Focos") { window.location="client_nucletron.php"; done=1; }
if (username=="NUCLETRON" && password=="FOCOS") { window.location="client_nucletron.php"; done=1; }
if (username=="NucLetron" && password=="focos") { window.location="client_nucletron.php"; done=1; }

if (username=="Mentor" && password=="Becker") { window.location="client_mentor.php"; done=1; }
if (username=="mentor" && password=="becker") { window.location="client_mentor.php"; done=1; }
if (username=="MENTOR" && password=="BECKER") { window.location="client_mentor.php"; done=1; }
if (username=="Mentor" && password=="Becker") { window.location="client_mentor.php"; done=1; }

if (username=="Cytyc" && password=="MammoSite") { window.location="client_mammosite.php"; done=1; }
if (username=="cytyc" && password=="mammosite") { window.location="client_mammosite.php"; done=1; }
if (username=="Cytyc" && password=="mammosite") { window.location="client_mammosite.php"; done=1; }
if (username=="CYTYC" && password=="MAMMOSITE") { window.location="client_mammosite.php"; done=1; }

if (username=="Cytyc" && password=="Gliasite") { window.location="client_gliasite.php"; done=1; }
if (username=="CYTYC" && password=="GLIASITE") { window.location="client_gliasite.php"; done=1; }
if (username=="cytyc" && password=="gliasite") { window.location="client_gliasite.php"; done=1; }
if (username=="Cytyc" && password=="GliaSite") { window.location="client_gliasite.php"; done=1; }

if (username=="isoray" && password=="cs131") { window.location="client_isoray.php"; done=1; }
if (username=="IsoRay" && password=="cs131") { window.location="client_isoray.php"; done=1; }
if (username=="ISORAY" && password=="CS131") { window.location="client_isoray.php"; done=1; }
if (username=="Isoray" && password=="cs131") { window.location="client_isoray.php"; done=1; }

if (username=="visionrt" && password=="alignrt") { window.location="client_visionrt.php"; done=1; }
if (username=="VISIONRT" && password=="ALIGNRT") { window.location="client_visionrt.php"; done=1; }

if (username=="xoft" && password=="axxent") { window.location="login_xoft/docs.htm"; done=1; }
if (username=="Xoft" && password=="axxent") { window.location="login_xoft/docs.htm"; done=1; }
if (username=="XOFT" && password=="axxent") { window.location="login_xoft/docs.htm"; done=1; }

if (done==0) { alert("Invalid login!"); }
}