/**
 * @author james.mcconnell
 */

function copyText(e)
{
	var ta = document.getElementById(e);
	ta.focus();
	ta.select();
	ta.createTextRange().execCommand('Copy');
	ta.blur();
}