function __doPostBack() {
		tCountry  = "";
        tPays = "";
        tIso3 = "";
        for (var i = 0; i < document.myform.CountryList.length; i++) {
            if (document.myform.CountryList.options[i].selected == true){
                tCountry = tCountry + document.myform.CountryList.options[i].value ;
                tPays = tPays + document.myform.CountryList.options[i].text ;
                tIso3 = tIso3 + document.myform.CountryList.options[i].id ;
            } 
        }
        document.forms[0].country.value = tCountry ;
        document.forms[0].pays.value = tPays ;
        document.forms[0].iso3.value = tIso3 ;
		myform.submit();  
}
function _doPostBack() {
		tCommodity  = "";
        for (var i = 0; i < document.myform.CommodityList.length; i++) {
            if (document.myform.CommodityList.options[i].selected == true){
                tCommodity = tCommodity + document.myform.CommodityList.options[i].value ;
            } 
        }
        document.forms[0].commodity.value = tCommodity ;
		myform.submit();  
}
function ___doPostBack() {
		tYear = "";
        for (var i = 0; i < document.forms[0].yearLyst.length; i++) {
            if (document.forms[0].yearLyst.options[i].selected == true){
                tYear = tYear + document.forms[0].yearLyst.options[i].value ;
            } 
        }
        document.forms[0].year.value = tYear ;
		myform.submit();  
}  

function topProducer() {
		tCountry  = "";
        tPays = "";
        tIso3 = "";
		tYear = "";        
        for (var i = 0; i < document.myform.CountryList.length; i++) {
            if (document.myform.CountryList.options[i].selected == true){
                tCountry = tCountry + document.myform.CountryList.options[i].value ;
                tPays = tPays + document.myform.CountryList.options[i].text ;
                tIso3 = tIso3 + document.myform.CountryList.options[i].id ;
            } 
        }
        document.forms[0].country.value = tCountry ;
        document.forms[0].pays.value = tPays ;
        document.forms[0].iso3.value = tIso3 ;
        for (var i = 0; i < document.forms[0].yearLyst.length; i++) {
            if (document.forms[0].yearLyst.options[i].selected == true){
                tYear = tYear + document.forms[0].yearLyst.options[i].value ;
            } 
        }
        document.forms[0].year.value = tYear ;
        
		myform.submit();  
}  
function openPage(what,type){
        msgPage=window.open(what,"displayWindow","toolbar=no,scrollbars=no,width=300,height=130,resizable=yes")
            	msgPage.focus()
        	}
      