var currentEditArea = '';

function editCurrency(a)
{
                try {
                        $(currentEditArea).css('border-bottom','0px');
                }
                catch(e) {}

                $('#e'+a).css('border-bottom','1px dotted #660000');
                currentEditArea = '#e'+a;

                $('#currency-area').html('<span><img src="/_common/img/smallLoading.gif" hspace="10">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Loading Information..</span>');
                $.ajax(
                        {
                                url:'/loadCurrency.php',
                                data:{ type: a },
                                success:function(data) {
                                        $("#currency-info").html( data );
                                },
                                error: function(xhr,err,e){
                                        alert( "Error: " + err );
                                }
                        }
                );

}

