// JavaScript for search bar function sendForm() { var client_ip = '38.107.191.101' ; var client_ip_7=(client_ip.substring(0,7)); var searchtype=document.getElementById("searchtype"); var option=searchtype.options[searchtype.selectedIndex].value; var find_request=document.forms["TestForm"]["find_request_1"].value; var newwindow=""; if (client_ip_7 == '137.216') { fullURL = "http://hermes.sdln.net/V?func=meta-1-check&mode=simple&find_request_1=" + find_request + option; newwindow = window.open(fullURL,"win","directories=0,left=50,top=150,location=1,menubar=1,resizable=1,scrollbars=1,status=1,toolbar=1"); newwindow.focus(); } else { fullURL = "http://excelsior.sdstate.edu/login?url=http://hermes.sdln.net/V?func=meta-1-check&mode=simple&find_request_1=" + find_request + option; newwindow = window.open(fullURL,"win","directories=0,left=50,top=150,location=1,menubar=1,resizable=1,scrollbars=1,status=1,toolbar=1"); newwindow.focus(); } }