// 2004-05-13 Function to retrieve project information from a search box
function ShowProjectInfo() {
  var strAddress;
  
  strAddress  = '/tcweb/projectinfo/projectinfo_body_newinfo.asp?show=detail&select=tc_global..TCProject.Projnum=\'';
  strAddress += document.forms['projectsearch'].proj1.value;
  strAddress += document.forms['projectsearch'].proj2.value;
  strAddress += document.forms['projectsearch'].proj3.value;
  strAddress += '\'&selType=Country&selValue=';
  strAddress += document.forms['projectsearch'].proj1.value;
  
  document.location.href = strAddress;
}