function quickfind() 
{ 
    var strURL = new String(document.getElementById("cboquickfind").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,2) == "//")
        {
            link("http:" + strURL);
        }
        else if (strURL.substring(0,1) == "/")
        {
            location.href=strURL;
        }
        else if (strURL.substring(0,5) == "http:")
        {
            link(strURL);
        }
    }

    document.getElementById("cboquickfind").focus();
    return false;
} 
              
