//+--------------------------------------------------
//| 校验开始日期和结束日期
//+--------------------------------------------------
function vali_Date()
{
var start = $("#startDate").val();
var end = $("#endDate").val();
if($("#chooseDay").attr("checked") == "checked" || $('input:radio[name="conditionType"]:checked').val() == '2'){
if(!stringIsNull(start) && !stringIsNull(end)){
alert('请选择时间');
$("#startDate").focus();
return false;
}
else if(!stringIsNull(start)){
alert('请选择开始时间');
$("#startDate").focus();
return false;
}
else if(!stringIsNull(end)){
alert('请选择结束时间');
$("#endDate").focus()