browse mode page drop-down

This commit is contained in:
Marc Delisle
2003-03-17 14:38:24 +00:00
parent caabb6aff6
commit 777e04f807
3 changed files with 43 additions and 0 deletions

View File

@@ -635,3 +635,10 @@ function onKeyDownArrowsHandler(e) {
}
e.returnValue = false;
}
/**
* listbox redirection
*/
function goToUrl(selObj, goToLocation){
eval("document.location.href = '" + goToLocation + "pos=" + selObj.options[selObj.selectedIndex].value + "'");
}