// JavaScript Document

/*I'll disable selecting text in an <div> with the id 'kopierschutz'. */

window.onload = function() {
  var element = document.getElementById('kopierschutz');
  element.onselectstart = function () { return false; } // ie
  element.onmousedown = function () { return false; } // mozilla
}






