function SetCollection(collectionName) { // retrieves the input tag named 'site' and sets its value to the name // parameter (collection name - also doubles as the submit button name). document.forms['googleSearchForm'].elements['site'].setAttribute("value", collectionName); } function LoadAdvancedSearchPage() { document.forms['googleSearchForm'].elements['access'].removeAttribute("disabled"); document.forms['googleSearchForm'].elements['access'].setAttribute("name", "access"); document.forms['googleSearchForm'].elements['access'].setAttribute("value", "p"); document.forms['googleSearchForm'].elements['sort'].removeAttribute("disabled"); document.forms['googleSearchForm'].elements['sort'].setAttribute("name", "sort"); document.forms['googleSearchForm'].elements['sort'].setAttribute("value", "date%3AD%3AL%3Ad1"); document.forms['googleSearchForm'].elements['ie'].removeAttribute("disabled"); document.forms['googleSearchForm'].elements['ie'].setAttribute("name", "ie"); document.forms['googleSearchForm'].elements['ie'].setAttribute("value", "UTF-8"); document.forms['googleSearchForm'].elements['oe'].removeAttribute("disabled"); document.forms['googleSearchForm'].elements['oe'].setAttribute("name", "oe"); document.forms['googleSearchForm'].elements['oe'].setAttribute("value", "UTF-8"); document.forms['googleSearchForm'].elements['ip'].removeAttribute("disabled"); document.forms['googleSearchForm'].elements['ip'].setAttribute("name", "ip"); document.forms['googleSearchForm'].elements['ip'].setAttribute("value", "204.138.90.254"); document.forms['googleSearchForm'].elements['proxycustom'].removeAttribute("disabled"); document.forms['googleSearchForm'].elements['proxycustom'].setAttribute("name", "proxycustom"); document.forms['googleSearchForm'].elements['proxycustom'].setAttribute("value", ""); document.forms['googleSearchForm'].submit(); }