window.onload = function() {
  var element = document.getElementById('pagecontent');
  element.onselectstart = function () { return false; } // ie
  element.onmousedown = function () { return false; } // mozilla
  element.oncontextmenu = function() {return false;} // for images
}


