function void1(){
	var s='';
}
mv_list = {
	sort: 'name',
	sort_order: 0,
	page:1,
	showResults: function (el, e){
		// if all is selected uncheck the rest

		// now check which one is selected and send the request to the server
		var params = 'cmd=getPrev';
		params += '&program_id='+$('program_id').value;

		// save the event position;
//		getMousePosition(e);

		// show the waiting message window
		//showSpinnerWindow();

		new Ajax.Updater('udetails','/index.php',{
			asynchronous: true,
			evalScripts: true,
			method: 'post',
			postBody: params
			});

	}
};

mv_list1 = {
	sort: 'name',
	sort_order: 0,
	page:1,
	showResults: function (el, e){
		// if all is selected uncheck the rest

		// now check which one is selected and send the request to the server
		var params = 'cmd=getNext';
		params += '&program_id='+$('program_id').value;
		// save the event position;
//		getMousePosition(e);

		// show the waiting message window
		//showSpinnerWindow();

		new Ajax.Updater('udetails','/index.php',{
			asynchronous: true,
			evalScripts: true,
			method: 'post',
			postBody: params
			});

	}
};
