$(function() {
    $.ECHO = {};
    
    window.copy = function(from, to) {
        from = document.getElementById(from).value;
        document.getElementById(to).value = from;
    };
});
