<!-- hiding from old browsers

function post(o, n, d ) {

//Function to attempt to confound "mailto" bots
//  syntax:  post( [[owner,] name, domain] );
//  Examples: 
//	post( "Dr. Davis Address","ad", "srl.caltech.edu" );
//      post( "ad", "srl.caltech.edu" );
//	post();

//	In the 1st form, the email address is displayed as a link,
//      with the first argument being the link text.
//	In the 2nd form, the email address is displayed as a link, 
//      and the address is also the link text.
//	The 3rd form (no args) prints the default ACE Science Center email addr and link

// 2003May15-GRHamell-mods to handle variable number of args.
// 2003may08-GRH-Created, based upon original code by Dr. A.Davis.

  var email = "";
  switch( arguments.length ) {
    case 3: 
      email = n + "@" + d ;
      document.write("<a href=\"mailto:" + email + "\">" + o + "</a></i>");
      break;
    case 2:
      d = n ;  n = o ;  email = n + "@" + d ;
      document.write("<i><a href=\"mailto:" + email + "\">" + email + "</a></i>");
      break;
    default:
      o = "Our"; n = "asc"; d = "srl.caltech.edu";
      document.write( "<i>" + o + " Email Address: " );  email = n + "@" + d ;
      document.write("<a href=\"mailto:" + email + "\">" + email + "</a></i>");
  }
}
//    end hiding -->

