(*): The content below has been archived for historical purposes. It contains historical information about projects and people from SRI International's Artificial
Intelligence Center. Current information is now available on
AIC's website and of course you can
also visit
SRI's AI content. Don't hesitate to
contact
us if you need more information about our current projects.
/**
* @author Yasmina Chitti
* @copyright SRI International, 13 March, 2007
*
**/
var homeServer;
// For some reason, Safari doesn't like variable "parent". Changed to parent_id
function iconNavigate(idtag,name,href) {
img_strn = "";
href_strn ="";
href_strn = "
";
href_strn += name + "";
return href_strn;
}
function topNavigation() {
nav_strn = "";
homeServer = "/";
nav_strn += "
";
for (parent_id = 0; parent_id < menuArray.length; parent_id++) {
current_id = parent_id+"_0";
nav_strn += " ";
}
nav_strn += "
";
document.write(nav_strn);
createMenus();
return;
}