<!--hide
function resetTextarea (FormName){
  document[FormName].display.value=document[FormName].original.value;
  document[FormName].current.value=document[FormName].original.value;
}
function initTextarea (FormName, TextString){
  document[FormName].display.value=TextString;
  document[FormName].original.value=TextString;
  document[FormName].current.value=TextString;
}
function displayMsg (FormName, MsgString){
  document[FormName].display.value=MsgString;
  document[FormName].current.value=MsgString;
}
function switchImage (ImageName, ImageSrc){
  if ((ImageName!=null)&&(ImageSrc!=null)){
    eval("document[ImageName].src="+ImageSrc+".src;");
  }
}

function activeRefOn(RefLightName, FormName, RefMsg, ImageName, ImageSrc){
  document[RefLightName].src=action_img.src;
  if ((FormName!="NotUsed")&&(RefMsg!=null)) {
    var NRefMsg=RefMsg;
    displayMsg(FormName, NRefMsg);
  }
  if (ImageName!='NotUsed'){
    switchImage (ImageName, ImageSrc);
  }
}
function activeRefOff(RefLightName, FormName, ImageName){
  document[RefLightName].src=initial_img.src;
  if (FormName != "NotUsed") {resetTextarea(FormName);}
  if (ImageName!='NotUsed'){
    switchImage (ImageName, 'uofs_seal');
  }
}
function activeRef(Indent, TheURL, Target, TheReference, MessageAreaName, TheMessage, GraphicName, TheImage, Epilogue){
  newName();
  for (i=1; i<=Indent; i++){
    document.write('<IMG NAME="'+curName()+ '" SRC="" BORDER=0 HEIGHT=16 WIDTH=16 ALIGN=baseline>');
    preLoad("document['"+curName()+"'].src=blank_img.src");
    newName();
  };
  document.write("<A HREF=\""+TheURL+"\" "); 
  if (Target!=null){
    document.write("target=\""+Target+"\" ");
  }
  document.writeln("onMouseOver=\"activeRefOn('"+curName()+"', '"+MessageAreaName+"', "+TheMessage+", '"+GraphicName+"', '"+TheImage+"')\" onMouseOut=\"activeRefOff('"+curName()+"', '"+MessageAreaName+"', '"+GraphicName+"')\"><IMG name=\""+curName()+"\" SRC=\"\" ALIGN=TEXTTOP WIDTH=16 HEIGHT=16 border=\"no\">"+TheReference +"</A>"+Epilogue);
  preLoad("document['"+curName()+"'].src=initial_img.src");
  newName();
}
function writeDisplayArea (AreaName, Rows, Cols, OrgMsg){
  document.writeln("<form name=\""+AreaName+"\"><INPUT type=\"hidden\" name=\"original\" value=\"- - -\"> <INPUT type=\"hidden\" name=\"current\" value=\"- - -\"><TEXTAREA name=\"display\" rows="+Rows+" cols="+Cols+" wrap=\"physical\" scrolling=\"no\" onChange=\"info.display.value=info.current.value\"></TEXTAREA></form><BR>");
  preLoad("initTextarea ('"+AreaName+"', "+OrgMsg+");");
}

// unhide -->