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 += '&news_id='+$('news_id').value;

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

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

		new Ajax.Updater('udetails','newsroom.html',{
			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 += '&news_id='+$('news_id').value;

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

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

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

	}
};

mv_list2 = {
	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 = 'ajax_cmd=saveDetS';
		params += '&first_name='+$('first_names').value;
		params += '&last_name='+$('last_names').value;
		params += '&dayTelephone='+$('dayTelephones').value;
		params += '&eveningTelephone='+$('eveningTelephones').value;
		params += '&mobile='+$('mobiles').value;
		params += '&city='+$('citys').value;
		params += '&country='+$('country').value;
		params += '&houseNameNumber='+$('houseNameNumbers').value;
		params += '&postcode='+$('postcodes').value;

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

		// show the waiting message window
		showSpinnerWindow();

		new Ajax.Updater('sdetailsR','/index.php',{
			asynchronous: true,
			evalScripts: true,
			method: 'post',
			postBody: params,
			onComplete: showOkWindow,
			onFailure: hideMsgWindow,
			onException: hideMsgWindow
			});

	}
};
