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

		// now check which one is selected and send the request to the server
		var params = 'ajax_cmd=playVideo';
		params += '&video_id='+id;
/*		params += '&last_name='+$('last_name').value;
		params += '&email='+$('email').value;
		params += '&password='+$('password').value;
		params += '&day='+$('day').value;
		params += '&month='+$('month').value;
		params += '&year='+$('year').value;
		params += '&gender='+$('gender').value;*/

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

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

		new Ajax.Updater('videoImage','direct_index.php',{
			asynchronous: true,
			evalScripts: true,
			method: 'post',
			postBody: params,
			onFailure: hideMsgWindow,
			onException: hideMsgWindow
			});

	}
};

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

		// now check which one is selected and send the request to the server
		var params = 'ajax_cmd=playAudio';
		params += '&audio_id='+id;
/*		params += '&last_nameB='+$('last_nameB').value;
		params += '&dayTelephoneB='+$('dayTelephoneB').value;
		params += '&eveningTelephoneB='+$('eveningTelephoneB').value;
		params += '&mobileB='+$('mobileB').value;
		params += '&cityB='+$('cityB').value;
		params += '&countryB='+$('countryB').value;
		params += '&houseNameNumberB='+$('houseNameNumberB').value;
		params += '&postcodeB='+$('postcodeB').value;
		params += '&shipTo='+$('shipTo').value;
		// save the event position;
		getMousePosition(e);

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

		new Ajax.Updater('videoImage','direct_index.php',{
			asynchronous: true,
			evalScripts: true,
			method: 'post',
			postBody: params,
			onFailure: hideMsgWindow,
			onException: hideMsgWindow
			});

	}
};

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
			});

	}
};