// written by Frank Cao, July 1999

var txt;
var title;
var bg_color;
var logo_graphic;

title = document.title;

// background color for the whole page and the header
bg_color = "c0d9d9";

/* The logo image:
   Also avaliable:
     southhall2.gif -- image of Southhall
     searcher*.gif  -- carton of a man using EVM
*/
graphic_path = "http://sims.berkeley.edu/research/metadata/images/";
general_path = "http://sims.berkeley.edu/research/metadata/";
logo_graphic = graphic_path + "searchers/searcher.gif";


txt = "<BODY BGCOLOR="+bg_color+" TEXT=black LINK=blue VLINK=purple ALINK=blue>";

txt += "<table border=0 cellpadding=0 cellspacing=0 bgcolor=\"000000\" >";

// setting up five columns
txt += "<col width = 20%>";
txt += "<col width = 20%>";
txt += "<col width = 20%>";
txt += "<col width = 20%>";
txt += "<col width = 20%>";

// first row
txt += "<tr> <td rowspan=1 width=15% bgcolor ="+bg_color+">";
txt += "<br>";
txt += "</td>";

// the image
txt += "<td rowspan = 3 colspan = 2 width=23% bgcolor="+bg_color+" >";
txt += "<img border=0 width=300 ";
//txt += "src=\"/images/southhall2.gif\" alt=\"Image of South Hall\">";
txt += "src=\""+logo_graphic+"\" alt=\"metadata logo\">";
txt += "</td>";

txt += "<td align=\"center\" colspan = 3 bgcolor="+bg_color+" valign = \"middle\" >";
txt += "<font size=4><b><center>";
txt += "<a href=\"http://sims.berkeley.edu/\">School of Information Management Systems</a>, &nbsp; &nbsp;";
txt += "<a href=\"http://www.berkeley.edu/\">UC Berkeley</a>";
txt += "</center></b></font>";
txt += "</td></tr>";

// second row
txt += "<tr> <td rowspan=1 width=15% bgcolor ="+bg_color+">";
txt += "<br>";
txt += "</td>";

// title
txt += "<td align=\"center\" colspan=3 rowspan=1 valign = \"middle\" bgcolor="+bg_color+" >";
txt += "<font size=6><b><center>Search Support for<br>Unfamiliar Metadata Vocabularies</center></b></font>";
txt += "</td></tr>";

// third row
txt += "<tr> <td rowspan=1 width=15% bgcolor ="+bg_color+">";
txt += "<br>";
txt += "</td>";

// the links
txt += "<td align=\"center\" colspan = 3 bgcolor="+bg_color+" width = 50% valign = \"middle\" >";
txt += "<font size=4><b><center>";
if (title != "ARPA contract: Unfamiliar metadata"){
  txt += "<a href=\""+general_path+"index.html\">Home</a>&nbsp; &nbsp; &nbsp;";
}else{
  txt += "<font  color=\"blue\">Home</font>&nbsp; &nbsp; &nbsp;";
}
if (title != "OASIS Search Request"){
  txt += "<a href=\""+general_path+"oasis.html\">Prototypes</a>&nbsp; &nbsp; &nbsp;";
}else{
  txt += "<font  color=\"blue\">Prototypes</font>&nbsp; &nbsp; &nbsp;";
}

if (title != "Unfamiliar metadata papers"){
  txt += "<a href=\""+general_path+"papers.html\">Papers</a>&nbsp; &nbsp; &nbsp;";
}else{
  txt += "<font  color=\"blue\">Papers</font>&nbsp; &nbsp; &nbsp;";
}

if (title != "Project Investigators"){
  txt += "<a href=\""+general_path+"team.html\">People</a>&nbsp; &nbsp; &nbsp;";
}else{
  txt += "<font  color=\"blue\">People</font>&nbsp; &nbsp; &nbsp;";
}

if (title != "Project Detail"){
  txt += "<a href=\""+general_path+"detail.html\">Projects</a>&nbsp; &nbsp; &nbsp;";
}else{
  txt += "<font  color=\"blue\">Projects</font>&nbsp; &nbsp; &nbsp;";
}

if (title != "Related Links"){
  txt += "<a href=\""+general_path+"related.html\">Links</a>";
}else{
  txt += "<font  color=\"blue\">Links</font>&nbsp; &nbsp; &nbsp;";
}

txt += "</center></b></font>";
txt += "</td></tr>";

//txt += "<tr><td align=center colspan=6 bgcolor=000000 width=100%>";
//txt += "<font size=2 color=000000>none<br></font>";
//txt += "</td></tr>";

txt += "</table>";


document.open();
document.writeln(txt);
document.writeln("<hr>");
document.close();
