function pl() { fl(); rl(); }

function fl()
{
  var i, frm, objects;

  if ( typeof( document.forms[0] ) != 'undefined' )
  {
    i = 0
    while ( typeof( document.forms[0].elements[i] ) != 'undefined' )
    {
      if ( document.forms[0].elements[i].type != 'hidden' )
      {
        if ( document.forms[0].elements[i].type == 'text' )
          document.forms[0].elements[i].focus();
        break;
      }

      i++;
    }

    if ( document.getElementsByTagName )
      for ( frm = 0; frm < document.forms.length; frm++ )
      {
        objects = document.forms[frm].getElementsByTagName('input');
        for ( i = 0; i < objects.length; i++ )
          if ( typeof( objects[i].src ) != 'undefined' )
            il( objects[i] );
      }
  }
}


function rl()
{
  var i, objects;
  
  if ( document.getElementsByTagName )
    objects = document.getElementsByTagName('img');
    for ( i = 0; i < objects.length; i++ )
      if ( typeof( objects[i].src ) != 'undefined' )
        il( objects[i] );
}

function il( object ) { if ( object.src.indexOf( '-normal' ) != -1 ) { object.nsrc = object.src; object.osrc = object.src.replace( '-normal', '-over' ); object.oimg = new Image; object.oimg.src = object.osrc; } }
function i0( name ) { var object; if ( document.getElementById ) if ( ( object = document.getElementById( name ) ) != null ) if ( object.nsrc != null ) object.src = object.nsrc; }
function i1( name ) { var object; if ( document.getElementById ) if ( ( object = document.getElementById( name ) ) != null ) if ( object.osrc != null ) object.src = object.osrc; }

function puo( url ) { var win = null; win = window.open( url, 'offsite', 'height=500,width=800,location=yes,resizable=yes,menubar=yes,status=yes,scrollbars=yes,toolbar=yes' ); //if ( win ) win.focus();
return false; }


var message="Function Disabled!";


function clickIE4() { if (event.button==2) return false; }
function clickNS4(e) { if (document.layers||document.getElementById&&!document.all) if (e.which==2||e.which==3) return false; }
if (document.layers) { document.captureEvents(Event.MOUSEDOWN); document.onmousedown=clickNS4; } else if (document.all&&!document.getElementById) document.onmousedown=clickIE4; document.oncontextmenu=new Function("return false");

