function AutoSelect(s){ loc = s.options[s.selectedIndex].value; if (s != ""){ eval("location.href='" + loc + "'"); } } function selectchange(){ extraquery = ""; thispage = "#"; thisob = arguments[0]; if (arguments.length > 2){ extraquery = arguments[2]; } if (arguments.length > 1){ thispage = arguments[1]; } testvalue=thisob.options[thisob.selectedIndex].value; if (testvalue != ''){ top.location.href=thispage + '?' + thisob.name + '=' + testvalue + (extraquery != '' ? '&' : '') + extraquery; } } function selectsubmit(){ thisob = arguments[0]; thisform = arguments[1]; testvalue=thisob.options[thisob.selectedIndex].value; if (testvalue != ''){ eval('document.' + thisform + '.submit()'); } } function getHelp(){ helpfile = window.open("help.cfm?helpfile=default.cfm","hlp","width=480; height=350; resizable=1; scrollbars=yes"); } function popUp(w,h,url){ window.open(url,"popup","width=w; height=h; resizable=1; scrollbars=yes"); }