// JavaScript Document

function textSelect(formNameS) {
    document.getElementById(formNameS).focus();
    document.getElementById(formNameS).select();
    //document.getElementById(formNameS).execCommand('copy');
}