function ClearForm(){
	    document.AllEventsForm.blnClearForm.value = "1";
        document.AllEventsForm.submit();
	}
	
	function ShowAllEvents(){
	    document.AllEventsForm.blnClearForm.value = "0";
	    document.AllEventsForm.blnShowAllEvents.value = "1";
	    document.AllEventsForm.blnEventDetails.value = "0";
        document.AllEventsForm.submit();
	}
	
	function EventDetails(ProvinceId, CityId, EventTypeId){
		    document.AllEventsForm.txtProvinceID.value = ProvinceId;
		    document.AllEventsForm.txtCityID.value = CityId;
		    document.AllEventsForm.txtEventTypeID.value = EventTypeId;
		    document.AllEventsForm.blnClearForm.value = "0";
		    document.AllEventsForm.blnRegister.value = "0";
		    document.AllEventsForm.blnShowCityProvinceEvents.value = "0";
		    document.AllEventsForm.blnEventDetails.value = "1";

		    document.AllEventsForm.submit();
	}
	
	function ShowEventDates(EventSort){
		document.AllEventsForm.EventSorting.value = EventSort;
		document.AllEventsForm.blnClearForm.value = "0";
		document.AllEventsForm.blnRegister.value = "0";
		document.AllEventsForm.blnEventDetails.value = "0";
		document.AllEventsForm.blnDateCityOrder.value = "1";
		    
		document.AllEventsForm.submit();
	}
	
	function GoRegister(EventID, EventTypeID){
	    document.AllEventsForm.blnClearForm.value = "0";
	    document.AllEventsForm.blnRegister.value = "1";
	    document.AllEventsForm.blnEventDetails.value = "0";
	    document.AllEventsForm.txtEventTypeID.value = EventTypeID;
	    document.AllEventsForm.txtEventID.value = EventID;
	    
        document.AllEventsForm.submit();
	}
	
