/*########################################################, | Review Gabriels API for search before editing | http://ajc-staging.gabriels.net/api/search/ |----------------------------------------------------------*/ var txtSearch = new GTSRESearch("txtSearch", GTSRE_PIPELINE_LISTINGS, GTSRE_CHANNEL_S, null); txtSearch.AddSuggest("searchterm", "location_input"); txtSearch.AddResponseContainer("response", "suggest"); document.onload = txtSearch.Load(); function idsearch(form) { var webID = document.searchform.userinput.value; var fValue = parseFloat( webID ); if ( isNaN( fValue ) ) { alert( "Please enter a valid number for the MLS/WebID/Photo Search " ); } if ( isFinite( fValue ) ) { window.open("http://ajcre.gabriels.net/for-sale/id/" + webID, "_self"); } } function closeError() { $("#error_box").style.display = "none"; $("#quick-search").txtSearch.focus() }