//Search welcome.london.ca function SubmitForm() { if (document.getElementById('searchBox').value=='SEARCH') { document.getElementById('searchBox').value=''; } document.getElementById('SearchForm').submit(); } // Please do not modify strOriginCode and strRestricSite parameters var strOriginCode = "WLC"; var strRestricSite = "LMI"; //Search LocalSites relevant to Immigration site function SearchLocalSites() { var SearchValue = new String(); var SearchTextBox = document.getElementById('searchBox'); var SearchRegxp = /^[""+'a-zA-Z0-9\s.\-:]+$/; var MCISearchWindow ; SearchValue = SearchTextBox.value; if ( !SearchRegxp.test(SearchValue) && (SearchValue.length > 0)) { alert ("Do not include punctuation or special characters in your search terms"); return; } SearchValue = escape(SearchValue); if ((SearchValue.length > 0) && (SearchValue != "SEARCH") ) { MCISearchWindow = window.open("http://www.mycommunityinfo.ca/Search2/SiteSearch.aspx?OC=" + strOriginCode + "&queryString=" + SearchValue + "&Restrict=" + strRestricSite, "Search","top=34,resizable=1,scrollbars=yes,menubar=yes, location=yes, toolbar=yes, fullscreen=no, status=yes", false); MCISearchWindow.focus(); } else { MCISearchWindow = window.open("http://www.mycommunityinfo.ca/Search2/SiteSearch.aspx?OC=" + strOriginCode + "&Restrict=" + strRestricSite, "Search","top=34,resizable=1,scrollbars=yes,menubar=yes, location=yes, toolbar=yes, fullscreen=no, status=yes",false); MCISearchWindow.focus(); } }