<!--function WM_checkIn(id) {/*WM_checkIn()Takes the ID of a positioned HTML element and returns an object reference.Source: Webmonkey Code Library(http://www.hotwired.com/webmonkey/javascript/code_library/)Author: TaylorAuthor Email: taylor@wired.comAuthor URL: http://www.taylor.org/Usage: WM_checkIn('id')*/  // This function checks for DOM strategy, then   // returns an object reference.  if (document.all) {    return document.all[id].style;  } else if(document.layers) {    return document.layers[id];  }}// -->