function CheckForm()
{
  if (document.Login.TextBox_UserName.value=="")
  {
    alert("用户名不能为空!");
document.Login.TextBox_UserName.focus();
return false;
  }
  if (document.Login.TextBox_Password.value=="")
  {
    alert("密码不能为空!");
document.Login.TextBox_Password.focus();
return false;
  }
  if (document.Login.txtValidateCode.value=="")
  {
    alert("验证码不能为空!");
document.Login.txtValidateCode.focus();
return false;
  }
  parent.popupLoad.style.visibility="visible";
  return true;
}
我下的一段代码,我想问问parent.popupLoad里popupLoad是什么意思,???