function getViewContryOperator(CountryID,lang)
{
	
	
	
	var doAddEvents = function(doAddEventResponse)
								{
									
									document.getElementById('ViewSelectedCountry').innerHTML=doAddEventResponse;
									if(CountryID==-1)
									{
										document.getElementById('ViewSelectedCountry').innerHTML="";
									}
									//window.location.reload();
								}
	/*(url, postData, hand, format)*/
	ProEvent.doPost('countries.php', 'CountryID='+CountryID+'&lang='+lang ,doAddEvents, 'text');
}



	