function copyTxt(f){
    
    if(document.getElementById) {
        var tmpval = document.getElementById(f).value;
        
        document.getElementById(f).focus();
        document.getElementById(f).select();
        
        if(window.clipboardData) {
            window.clipboardData.setData("text",tmpval);
        }
    }
}