<!--
// Disable Right click, part 2 of 2. Place this code at the end of HTML code

// to prevent right click on images include:
  for (var i=0; i<document.images.length; i++)
    document.images[i].onmousedown=right;

// to prevent right click on links include:
  for (var i=0; i<document.links.length; i++)
    document.links[i].onmousedown=right;

//-->

