var date = new Date();

//添加标记
function frmSearch(page,compID,frm)
{
	if(frm.ScoreDetail_StartDate.value!=""){
		
		if(!isDate(frm.ScoreDetail_StartDate.value)){
		alert("请输入正确的起始日期格式！");
		return false;
	}
		}
	if(frm.ScoreDetail_EndDate.value!=""){
		if(!isDate(frm.ScoreDetail_EndDate.value)){
			alert("请输入正确的结束日期格式！");
			return false;
		}	
		}
		
	if(!compareDate(frm.ScoreDetail_StartDate.value,frm.ScoreDetail_EndDate.value)){
    			alert("请在搜索条件中选择起始日期小于结束日期!");
    			return false;	
    	}
    	else{
	frm.action=page+"?"+compID+"_action=Search&time=" + date.getTime();
	frm.submit();
	}
}
function frmReturn(page)
{
	window.location=page+"?time=" + date.getTime();
}
function frmReset(frm)
{
	frm.ScoreDetail_OrderID.value="";
	frm.ScoreDetail_StartDate.value="";
	frm.ScoreDetail_EndDate.value="";
}

