﻿function FrontPage_Form2_Validator(theForm)
{
  if (theForm.v_value.value == "")
  {
    alert("必须输入检索值。");
    
    
    
    
    theForm.v_value.focus();
    return (false);
  }

  if(theForm.FLD_DAT_BEG.value!="" && theForm.FLD_DAT_END.value != "" && theForm.FLD_DAT_BEG.value > theForm.FLD_DAT_END.value)
  {
    alert("出版时间限定范围不正确。");
    theForm.FLD_DAT_BEG.focus();
    return (false);
  }
  return (true);
}

function ComplexSearch()
{
	document.complex.v_src.value="IlaswebBib_Complex.html";
	document.complex.action = "http://221.203.97.123/cgi-bin/EnterIlasweb";
	document.complex.submit();
	return;
}