/* ANTIDL.JS */
<!-- begin
function disableselect(e)
{
	if (navigator.appName != 'Netscape')
	{
		return false;
	};
	
	return true;
}

function reEnable()
{
	return true;
}

document.onselectstart=new Function ("return false");
if (window.sidebar)
{
	document.onmousedown=disableselect;
	document.onclick=reEnable;
}
// end -->

<!-- Begin
function roadster(evt) 
{
  if (navigator.appName != 'Microsoft Internet Explorer')
  {
    if (evt.which != 3) 
    	return true;
  };
  
  return false;
}
function trap() 
{
  if(document.images)
  {
    if(navigator.appName != 'Microsoft Internet Explorer')
    {
      for(i=0;i<document.images.length;i++)
        document.images[i].onmousedown = roadster;
    }
    else
    {
      for(i=0;i<document.images.length;i++)
        document.images[i].oncontextmenu = roadster;
    }
  }
}
// End -->