// JavaScript Document

function omdhan( evnt )
{
  if( evnt.which == 3 )
  {
    alert( "Copyright 2006" );
    return false;
  }
}
function ocmhan()
{
  alert( "Copyright 2006" );
  return false;
}
function tagimg()
{/*
  if( document.layers )
  {
    for( i = 0; i < document.images.length; i++ )
      document.images[i].onmousedown = omdhan;
  }
  else
  {
    for( i = 0; i < document.images.length; i++ )
      document.images[i].oncontextmenu = ocmhan;
  }*/
}