function quickfind() 
{ 
  var strURL = new String(document.getElementById("helpfullabel").value);
  if (strURL != "0")
  {
    if (strURL.substring(0,11) == "javascript:")
    {
      var strJSCommand = strURL.substring(11);
      var strParsedCommand = strJSCommand.split("'");
      if (strParsedCommand[1] != 0)
      {
        switch (strParsedCommand[0])
        {
          case "nodelink(":
          {
            nodelink(strParsedCommand[1]);
            break;
          }

          case "location.href=":
          {
            location.href=strParsedCommand[1];
            break;
          }
          case "link(":
          {
            link(strParsedCommand[1]);
            break;
          }
        }
      }
    }

    else if (strURL.substring(0,7) == "ssLINK/")
    {
      location.href=strURL;
    }
    
    else if (strURL.substring(0,11) == "ssNODELINK/")
    {
      location.href=strURL;
    }

    else if (strURL.substring(0,2) == "//")
    {
      link("http:" + strURL);
    }

    else if (strURL.substring(0,1) == "/")
    {
      location.href=strURL;
    }

    else if (strURL.substring(0,5) == "http:")
    {
	// code to strip off port number from url of SSL pages.
	if(strURL.lastIndexOf(":")>6){
		var intLstIndexColon = strURL.lastIndexOf(":");
		intLstIndexColon = intLstIndexColon + 5; 
    		strURL = strURL.substring(0, strURL.lastIndexOf(":")) + strURL.substring(intLstIndexColon, strURL.length);
        }
      location.href=strURL;
    }

    else if (strURL.substring(0,5) == "https:")
    {
	// code to strip off port number from url of SSL pages.
	if(strURL.lastIndexOf(":")>6){
		var intLstIndexColon = strURL.lastIndexOf(":");
		intLstIndexColon = intLstIndexColon + 5; 
    		strURL = strURL.substring(0, strURL.lastIndexOf(":")) + strURL.substring(intLstIndexColon, strURL.length);
        }
      	location.href=strURL;
      
    }
  }

  document.getElementById("helpfullabel").focus();
  return false;
}               