<!--
function opendetailwindow(url) {
detailwindow=window.open(url,'detailwindow','toolbar=no,scrollbars=yes,resizable=yes,width=800,height=600');
detailwindow.focus();
}
  function right(z) {
    if (navigator.appName == 'Netscape' && (z.which == 2 || z.which == 3)) {
      alert('© Copyright 2005 Grow Company, Inc. and its licensors');
      return false;
    }
    else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button==2 || event.button == 3)) {
      alert('© Copyright 2005 Grow Company, Inc. and its licensors');
      return false;
    }
    return true;
  }
  document.onmousedown=right;
  if (document.layers) 
       window.captureEvents(Event.MOUSEDOWN);
       window.onmousedown=right;
-->
