function PriceHandler_en() {
    dojo.xhrGet({
        url:"/images/js/prices/price_en.php", handleAs:"text",
        load: function(data){
            var a = dojo.fromJson(data); 


	    for (var o in a) {
                if (document.getElementById(o))
		    {
			document.getElementById(o).innerHTML = a[o];
		    }

            }
        }
    });
};
