function copyAll(champ) 
{
var tempval=eval("document."+champ);
tempval.focus();
tempval.select();
therange=tempval.createTextRange();
therange.execCommand("Copy");
}

