function adepteo_disableright(e) {
        var msg = "All images on this site are copyright.";
        alert(msg);
        if (!e) var e = window.event;
        e.cancelBubble = true;
        if (e.stopPropagation) e.stopPropagation();
        return false;
}

function adepteo_trap_right()
  {
	adepteo_set_height();
  if(document.images)
    {
    for(i=0;i<document.images.length;i++)
      {
        document.images[i].oncontextmenu = adepteo_disableright;
      }
    }
  }

function adepteo_set_height()
{
	if(document.getElementById('right_nav')){
                    var scrollRightNav = document.getElementById('right_nav').scrollHeight;
                    var scrollBodyHeight = document.getElementById('main_body').scrollHeight;
                    var client = document.getElementById('main_body');

                    var Stretch = scrollRightNav - scrollBodyHeight;
                    if( Stretch > 0 ) {
			scrollRightNav = scrollRightNav + 25;
                        if (navigator.userAgent && navigator.userAgent.indexOf("MSIE") >= 0)
                        {
                        	client.style.height = scrollRightNav + 'px';
                        }
                        else
                        {
                        	client.style.setProperty ( 'height', scrollRightNav + 'px', null);
                        }
                }
	}

}

