function check_magzine(){
if (form2.year1.value=="0" || form2.month1.value=="0"){
alert("请选择年份与月份！");
return false;
}
return true;
}

function set_month() { 
var month_end=12;
if (form2.year1.value==year_now){month_end=month_now;}
var i;
//删除原有内容
for (i=form2.month1.length-1;i>0;i--){
form2.month1.options.remove(i);
}
//增加新月份
for (i=1;i<month_end+1;i++){
var newsel=document.createElement("OPTION");
newsel.text=i.toString();
newsel.value=i.toString();
form2.month1.add(newsel);
}
}
function check_search(){
if (form1.keyword.value.length<2){
alert("关键字长度不得小于2！");
return false;
}
if (form1.keyword.value.length>50){
alert("关键字长度大得小于50！");
return false;
}
return true;
}