function input_copy( input ) 
{
	copied = input.createTextRange();
	input.focus();
	input.select();
	copied.execCommand("Copy");
}