<!--
function gotoPageQuick()
{
    var dForm = document.quickFindForm;
    if (dForm.quickFind.options[dForm.quickFind.selectedIndex].value.length<1)
    {
        return false;
    }
    dForm.action = dForm.quickFind.options[dForm.quickFind.selectedIndex].value;
    <!--    dForm.target = "emp"; -->
    dForm.submit();

    return true;
}//gotoPage
//-->