function Verifyacc1() { var LoadID = GetCookie('L5LoadStatus') if (LoadID == "L5Info") { var oName = GetCookie('L5LoginName') var oAccID = GetCookie('L5Password') window.status=(' Verifying: ' + oName + '-' + oAccID + ' Please wait........'); var location=("http://www.LinkFive.com/Federation/Leagues" + "/" + oName + "-" + oAccID + ".html"); this.location.href = location; } else { window.status=('Please enter your Login ID...'); var oName = prompt("Enter League Location: \n(Case Sensitive)\n", "") window.status=(' League Location = ' + oName); SetCookie ('L5LoginName', oName, exp); var oAccID = prompt("Enter your League Name: \n(Case Sensitive)\n", "") window.status=(' League Name = ' + oAccID); SetCookie ('L5Password', oAccID, exp); if (oAccID == "" || oName == "" || oAccID == "null" || oName == "null") { alert('ERROR\nYou must enter the Correct Information.'); window.status=('Missing data or Empalid. Check spelling and Ensure Login ID & Password are in Correct Case.'); } else { window.status=(' Verifying: ' + oName + '-' + oAccID + ' Please wait........'); var location=("http://www.LinkFive.com/Federation/Leagues" + "/" + oName + "-" + oAccID + ".html"); this.location.href = location; } } }