function updateMBOSchedule(scheduleID)
{
	var currentURL = window.location.href;
	
	var urlparts = currentURL.split("?");
	currentURL = urlparts[0];
	
	var startField = document.getElementById('MBOStart_'+scheduleID);
	var endField = document.getElementById('MBOEnd_'+scheduleID);
	
	if(startField != null)
	{
		currentURL += "?MBOStart_"+scheduleID+"="+document.getElementById('MBOStart_'+scheduleID).value;

		if(endField != null)
			currentURL += "&MBOEnd_"+scheduleID+"="+document.getElementById('MBOEnd_'+scheduleID).value;
			
		window.location = currentURL
	}
}
