function deobtuse(e)
{
  switch(e.id){
  case "forum" :
    e.href = "./mbbs22/";
    break;
  case "photos" :
    //http://uwyo.edu/bike/mbbs22/photos/photo-main.asp
    e.href = "./mbbs22/photos/photo-main.asp";
    break;
  case "schedule" :
    //http://uwyo.edu/bike/mbbs22/calendar/calendar-view.asp?calendarid=1
    e.href = "./mbbs22/calendar/calendar-view.asp?calendarid=1"
    break;
  default :
    //alert(e.id.substring(0,2));
    if (e.id.substring(0,2) == "PF"){
        var postedbyid = e.id.substring(2);
	//http://uwyo.edu/bike/mbbs22/view-profile.asp?action=view&uid=27
        e.href="./mbbs22/view-profile.asp?action=view&uid=" + postedbyid;
    }
    if (e.id.substring(0,3) == "TID"){
        var topicid = e.id.substring(3);
	//http://uwyo.edu/bike/mbbs22/forums/thread-view.asp?tid=2&posts=2&start=1
        e.href="./mbbs22/forums/thread-view.asp?tid=" + topicid;
    }
  }  
}
