﻿// JavaScript Document

function highlight(x,y) {
  var Feld = document.forms[x].elements[y];
  Feld.focus();
  Feld.select();
  Feld.createTextRange().execCommand("Copy");
}

