jQuery(function ($) {
	$("#search_button").click(function () {
		var type = $("#type").val();
		var typeId = $("#typeId").val();
		var startDate = $("#startDate").val();
		var endDate = $("#endDate").val();
		dategrid(type,typeId,startDate,endDate);
	});
});
function dategrid(type,typeId,startDate,endDate) {
	var purl = "";
	var flag = false;
	purl = webPath + "/view/exhibition/exhibition-list.action";
	if (type != undefined && type != null && type != "") {
		purl = purl + "?type=" + type;
		flag = true;
	}
	
	if (typeId != undefined && typeId != null && typeId != "") {
		//address = encodeURI(address);
		if (flag == true) {
			purl = purl + "&&typeId=" + typeId;
		} else {
			purl = purl + "?typeId=" + typeId;
			flag = true;
		}
	}
	if (startDate != undefined && startDate != null && startDate != "") {
		if (flag == true) {
			purl = purl + "&&startDate=" + startDate;
		} else {
			purl = purl + "?startDate=" + startDate;
			flag = true;
		}
	}
	if (endDate != undefined && endDate != null && endDate != "") {
		if (flag == true) {
			purl = purl + "&&endDate=" + endDate;
		} else {
			purl = purl + "?endDate=" + endDate;
			flag = true;
		}
	}
	window.location.href = purl;
}

