function switchDiv () {
 var args, obj1, obj2;
 args = switchDiv.arguments;
    if (navigator.appName == 'Netscape' && document.layers != null) {
       obj1 = eval(document.layers[args[0]]);
       if (obj1) obj1.visibility = 'visible';
       obj2 = eval(document.layers[args[1]]);
       if (obj2) obj2.visibility = 'hidden';
    } else if (document.all != null) {          //IE
      obj1 = eval(args[0]);
      obj2 = eval(args[1]);
      if (obj1) obj1.style.visibility = show;
      if (obj2) obj2.style.visibility = hide;
    }
}

function showAuthor (author) { 
  authorWindow=window.open(author,"authorwin","toolbar=no,width=400,height=300,status=no,scrollbars=yes,resize=no,menubar=no"); 
}

function StatusGone() {
  Gone = 'Details?'; 
  setTimeout ("status = Gone",1) 
  return true;
}




