/* Javascript for CVS Pharmacy "security" for Benefit Strategies site*/
function CheckFields(thisForm)
{
 if ( thisForm.userid.value.toUpperCase() != "CVS") 
 {
  alert("Invalid userid")
  thisForm.userid.focus() ;
  thisForm.userid.select() ;
  return (false) ;
 }
 
 if (thisForm.passw.value.toUpperCase() != "PHARMACY") 
 {
  alert("Invalid password")
  thisForm.passw.focus() ;
  thisForm.passw.select() ;
  return (false) ;
 }
 
 document.cookie = 'CVS=Authenticated';
 thisForm.userid.value = '';
 thisForm.passw.value = '';
}