This is an advanced template option. You must call ZoomInitSearch() before this. Please check documentation for more help.
");
IsWarningGiven = true;
return;
}
// Display the form
if (FormFormat > 0)
{
ZoomShowFormStart();
ZoomShowSearchBox();
ZoomShowSearchButton();
if (FormFormat == 2)
{
ZoomShowResultsPerPage();
ZoomShowMatchOptions();
ZoomShowDateRange();
ZoomShowCategories();
ZoomShowMetaFields();
}
ZoomShowFormEnd();
}
}
function ZoomShowHeading()
{
if (InitSearchCalled == false)
{
if (IsWarningGiven == false)
document.writeln("This is an advanced template option. You must call ZoomInitSearch() before this. Please check documentation for more help.
");
IsWarningGiven = true;
return;
}
if (IsNoSearch)
return;
document.write("" + STR_RESULTS_FOR + " " + queryForHTML);
if (UseCats) {
if (cat[0] == -1)
{
document.writeln(" " + STR_RESULTS_IN_ALL_CATEGORIES);
query_zoom_cats = "&zoom_cat%5B%5D=-1";
}
else
{
document.writeln(" " + STR_RESULTS_IN_CATEGORY + " ");
for (catit = 0; catit < num_zoom_cats; catit++)
{
if (catit > 0)
document.write(", ");
document.write("\"" + catnames[cat[catit]] + "\"");
query_zoom_cats += "&zoom_cat%5B%5D="+cat[catit];
}
}
}
document.writeln("
");
}
function ZoomShowResults()
{
if (InitSearchCalled == false)
{
if (IsWarningGiven == false)
document.writeln("This is an advanced template option. You must call ZoomInitSearch() before this. Please check documentation for more help.
");
IsWarningGiven = true;
return;
}
if (IsNoSearch)
{
if (ZoomInfo == 1)
document.writeln("");
// determine current line of result from the output array
if (page == 1) {
arrayline = 0;
} else {
arrayline = ((page - 1) * per_page);
}
// the last result to show on this page
result_limit = arrayline + per_page;
// display the results
while (arrayline < matches && arrayline < result_limit) {
ipage = output[arrayline][0];
score = output[arrayline][1];
pgurl = pagedata[ipage][PAGEDATA_URL];
pgtitle = pagedata[ipage][PAGEDATA_TITLE];
pgdesc = pagedata[ipage][PAGEDATA_DESC];
pgimage = pagedata[ipage][PAGEDATA_IMG];
urlLink = pgurl;
if (GotoHighlight == 1)
{
if (SearchAsSubstring == 1)
urlLink = AddParamToURL(urlLink, "zoom_highlightsub=" + queryForURL);
else
urlLink = AddParamToURL(urlLink, "zoom_highlight=" + queryForURL);
}
if (PdfHighlight == 1)
{
if (urlLink.toLowerCase().indexOf(".pdf") != -1)
urlLink = urlLink+"#search=%22"+query+"%22";
}
if (arrayline % 2 == 0)
document.writeln("
");
else
document.writeln("
");
if (PluginOpenNewWindow == 1 && pageinfo[ipage][PAGEINFO_FILETYPE] >= FileTypePluginStart)
target = " target=\"_blank\"";
else
target = zoom_target;
if (UseZoomImage == 1)
{
if (pgimage.length > 1)
{
document.writeln("
");
document.writeln("

");
document.writeln("
");
}
}
document.writeln("
");
if (DisplayNumber == 1)
document.writeln("
" + (arrayline+1) + ". ");
if (DisplayTitle == 1)
{
document.writeln("
");
PrintHighlightDescription(pgtitle);
document.writeln("");
}
else
document.writeln("
" + pgurl + "");
if (UseCats)
{
catpage = pageinfo[ipage][PAGEINFO_CAT];
document.write("
");
for (cati = 0; cati < NumCats; cati++)
{
if (catpage.charAt(cati) == "1")
document.write(" ["+catnames[cati]+"]");
}
document.writeln("");
}
document.writeln("
");
if (UseMetaFields == 1 && DisplayMetaFields == 1)
{
var cssFieldName, cssValueName;
for (fieldnum = 0; fieldnum < NumMetaFields; fieldnum++)
{
cssFieldName = "result_metaname_" + metafields[fieldnum][METAFIELD_NAME];
cssValueName = "result_metavalue_" + metafields[fieldnum][METAFIELD_NAME];
if (GetMetaValues(ipage, fieldnum) != null)
{
if (metafields[fieldnum][METAFIELD_TYPE] == METAFIELD_TYPE_DROPDOWN)
{
document.writeln("
");
document.writeln(""+metafields[fieldnum][METAFIELD_SHOW]+": ");
document.write("");
var ddi = GetMetaValues(ipage, fieldnum);
document.writeln(metafields[fieldnum][METAFIELD_DROPDOWN][ddi]+"
");
}
else if (metafields[fieldnum][METAFIELD_TYPE] == METAFIELD_TYPE_MULTI)
{
var metaVal = GetMetaValues(ipage,fieldnum);
if (metaVal.length > 0)
{
document.writeln("
");
document.writeln(""+metafields[fieldnum][METAFIELD_SHOW]+": ");
document.write("");
var ddarray = metafields[fieldnum][METAFIELD_DROPDOWN];
for (mvi = 0; mvi < metaVal.length; mvi++)
{
if (mvi > 0)
document.write(", ");
document.write(ddarray[metaVal[mvi]]);
}
document.write("
");
}
}
else if (metafields[fieldnum][METAFIELD_TYPE] == METAFIELD_TYPE_MONEY)
{
document.writeln("
");
document.writeln(""+metafields[fieldnum][METAFIELD_SHOW]+": ");
var tmpMoneyStr = "";
if (MetaMoneyShowDec == 1)
tmpMoneyStr = (GetMetaValues(ipage, fieldnum)/100).toFixed(2);
else
tmpMoneyStr = GetMetaValues(ipage, fieldnum);
document.writeln(""+MetaMoneyCurrency+tmpMoneyStr+"
");
}
else
{
document.writeln("
");
document.writeln(""+metafields[fieldnum][METAFIELD_SHOW]+": ");
document.writeln(""+GetMetaValues(ipage, fieldnum)+"
");
}
}
}
}
if (DisplayMetaDesc == 1)
{
// print meta description
document.writeln("
");
PrintHighlightDescription(pgdesc);
document.writeln("
\n");
}
info_str = "";
if (DisplayTerms == 1)
info_str += STR_RESULT_TERMS_MATCHED + " " + output[arrayline][2];
if (DisplayScore == 1) {
if (info_str.length > 0)
info_str += " - ";
info_str += STR_RESULT_SCORE + " " + score;
}
if (DisplayDate == 1)
{
pgdate = pageinfo[ipage][PAGEINFO_DATETIME];
if (pgdate > 0)
{
datetime = new Date(pgdate*1000);
if (info_str.length > 0)
info_str += " - ";
info_str += datetime.getDate() + " " + months[datetime.getMonth()] + " " + datetime.getFullYear();
}
}
if (DisplayFilesize == 1)
{
filesize = pageinfo[ipage][PAGEINFO_FILESIZE];
filesize = Math.ceil(filesize / 1024);
if (filesize < 1)
filesize = 1;
if (info_str.length > 0)
info_str += " - ";
info_str += filesize + "k";
}
if (DisplayURL == 1) {
if (info_str.length > 0)
info_str += " - ";
if (TruncateShowURL > 0)
{
if (pgurl.length > TruncateShowURL)
pgurl = pgurl.substr(0, TruncateShowURL) + "...";
}
info_str += STR_RESULT_URL + " " + pgurl;
}
document.writeln("
");
document.writeln(info_str);
document.writeln("
\n");
arrayline++;
}
document.writeln("
"); // end results style tag
}
function ZoomShowSummary()
{
if (InitSearchCalled == false)
{
if (IsWarningGiven == false)
document.writeln("
This is an advanced template option. You must call ZoomInitSearch() before this. Please check documentation for more help.
");
IsWarningGiven = true;
return;
}
if (IsNoSearch)
return;
if (SkippedWords > 0)
document.writeln("
" + STR_SKIPPED_FOLLOWING_WORDS + " " + SkippedOutputStr + ".
");
//Display search result information
document.writeln("
");
if (matches == 0)
document.writeln(STR_SUMMARY_NO_RESULTS_FOUND + "
");
else if (NumSearchWords > 1 && andq == 0) {
//OR
SomeTermMatches = matches - fullmatches;
document.writeln(PrintNumResults(fullmatches) + " " + STR_SUMMARY_FOUND_CONTAINING_ALL_TERMS + " ");
if (SomeTermMatches > 0)
document.writeln(PrintNumResults(SomeTermMatches) + " " + STR_SUMMARY_FOUND_CONTAINING_SOME_TERMS);
document.writeln("
");
}
else if (NumSearchWords > 1 && andq == 1) //AND
document.writeln(PrintNumResults(fullmatches) + " " + STR_SUMMARY_FOUND_CONTAINING_ALL_TERMS + "
");
else
document.writeln(PrintNumResults(matches) + " " + STR_SUMMARY_FOUND + "
");
document.writeln("
\n");
}
function ZoomShowCatSummary()
{
if (UseCats == 0 || DisplayCatSummary == 0 || CatCounterFilled == 0)
return;
if (InitSearchCalled == false)
{
if (IsWarningGiven == false)
document.writeln("
This is an advanced template option. You must call ZoomInitSearch() before this. Please check documentation for more help.
");
IsWarningGiven = true;
return;
}
if (IsNoSearch)
return;
var ShowCatSummaryHeading = true;
var CatSummaryShown = false;
for (catit = 0; catit < NumCats; catit++)
{
if (CatCounter[catit] > 0)
{
// if all the results found belonged to this one category, then we don't show a cat summary at all
if (CatCounter[catit] != matches)
{
if (ShowCatSummaryHeading == true)
{
document.writeln("
" + STR_CAT_SUMMARY + "
");
ShowCatSummaryHeading = false;
CatSummaryShown = true;
}
document.writeln("- " + catnames[catit]);
document.writeln(" (" + CatCounter[catit] + ")
");
}
}
}
if (DisplayCatSummary == 1 && CatSummaryShown == true)
document.writeln("
");
}
function ZoomShowPagesCount()
{
if (InitSearchCalled == false)
{
if (IsWarningGiven == false)
document.writeln("
This is an advanced template option. You must call ZoomInitSearch() before this. Please check documentation for more help.
");
IsWarningGiven = true;
return;
}
if (IsNoSearch)
return;
if (num_pages > 1)
document.writeln("
" + num_pages + " " + STR_PAGES_OF_RESULTS + "
\n");
}
var LastRecLinkIdx = 0;
function RecLinkWordMatch(rec_word, rec_idx)
{
var bRecLinkFound = false;
if (LastRecLinkIdx == rec_idx)
return false;
for (sw = 0; sw <= NumSearchWords; sw++)
{
if (sw == NumSearchWords)
{
match_result = wordcasecmp(rec_word, queryForSearch);
}
else
{
if (UseWildCards[sw] == 1)
{
if (SearchAsSubstring == 0)
pattern = "^" + RegExpSearchWords[sw] + "$";
else
pattern = RegExpSearchWords[sw];
re = new RegExp(pattern, "g");
match_result = rec_word.search(re);
}
else if (SearchAsSubstring == 0)
{
match_result = wordcasecmp(rec_word, searchWords[sw]);
}
else
match_result = rec_word.indexOf(searchWords[sw]);
if (match_result == -1)
{
if (rec_word.indexOf("*") != -1 || rec_word.indexOf("?") != -1)
{
var RecWordRegExp = "^" + pattern2regexp(rec_word) + "$";
re = new RegExp(RecWordRegExp, "g");
match_result = searchWords[sw].search(re);
}
}
}
if (match_result != -1)
{
bRecLinkFound = true;
if (num_recs_found == 0)
{
document.writeln("
");
document.writeln("
" + STR_RECOMMENDED + "
");
}
LastRecLinkIdx = rec_idx;
pgurl = pagedata[rec_idx][PAGEDATA_URL];
pgtitle = pagedata[rec_idx][PAGEDATA_TITLE];
pgdesc = pagedata[rec_idx][PAGEDATA_DESC];
pgimage = pagedata[rec_idx][PAGEDATA_IMG];
urlLink = pgurl;
if (GotoHighlight == 1)
{
if (SearchAsSubstring == 1)
urlLink = RecLinkAddParamToURL(urlLink, "zoom_highlightsub=" + queryForURL);
else
urlLink = RecLinkAddParamToURL(urlLink, "zoom_highlight=" + queryForURL);
}
if (PdfHighlight == 1)
{
if (urlLink.toLowerCase().indexOf(".pdf") != -1)
urlLink = urlLink+"#search=%22"+query+"%22";
}
document.writeln("
");
if (UseZoomImage == 1)
{
if (pgimage.length > 1)
{
document.writeln("
");
document.writeln("

");
document.writeln("
");
}
}
document.writeln("
");
document.writeln("
")
PrintHighlightDescription(pgdesc);
document.writeln("
");
document.writeln("
" + pgurl + "
");
document.writeln("
");
num_recs_found++;
break;
}
}
return bRecLinkFound;
}
function ZoomShowRecommended()
{
if (InitSearchCalled == false)
{
if (IsWarningGiven == false)
document.writeln("
This is an advanced template option. You must call ZoomInitSearch() before this. Please check documentation for more help.
");
IsWarningGiven = true;
return;
}
if (IsNoSearch)
return;
// Show recommended links if any
if (Recommended == 1)
{
num_recs_found = 0;
rec_count = recommended.length;
for (rl = 0; rl < rec_count && num_recs_found < RecommendedMax; rl++)
{
sep = recommended[rl].lastIndexOf(" ");
if (sep > -1)
{
rec_word = recommended[rl].slice(0, sep);
rec_idx = parseInt(recommended[rl].slice(sep));
if (rec_word.indexOf(",") != -1)
{
rec_multiwords = rec_word.split(",");
for (rlm = 0; rlm < rec_multiwords.length; rlm++)
{
if (RecLinkWordMatch(rec_multiwords[rlm], rec_idx))
break;
}
}
else
RecLinkWordMatch(rec_word, rec_idx);
}
}
if (num_recs_found > 0)
document.writeln("
");
}
}
function ZoomShowSorting()
{
if (InitSearchCalled == false)
{
if (IsWarningGiven == false)
document.writeln("
This is an advanced template option. You must call ZoomInitSearch() before this. Please check documentation for more help.
");
IsWarningGiven = true;
return;
}
if (IsNoSearch)
return;
// Show sorting options
if (matches > 1)
{
if (UseDateTime == 1)
{
document.writeln("
");
}
}
}
function ZoomShowPageNumbers()
{
if (InitSearchCalled == false)
{
if (IsWarningGiven == false)
document.writeln("
This is an advanced template option. You must call ZoomInitSearch() before this. Please check documentation for more help.
");
IsWarningGiven = true;
return;
}
if (IsNoSearch)
return;
// Show links to other result pages
if (num_pages > 1)
{
// 10 results to the left of the current page
start_range = page - 10;
if (start_range < 1)
start_range = 1;
// 10 to the right
end_range = page + 10;
if (end_range > num_pages)
end_range = num_pages;
document.writeln("
" + STR_RESULT_PAGES + " ");
if (page > 1)
document.writeln("
<< " + STR_RESULT_PAGES_PREVIOUS + " ");
for (i = start_range; i <= end_range; i++)
{
if (i == page)
document.writeln(page + " ");
else
document.writeln("
" + i + " ");
}
if (page != num_pages)
document.writeln("
" + STR_RESULT_PAGES_NEXT + " >> ");
document.writeln("
");
}
if (ZoomInfo == 1)
document.writeln("
" + STR_POWEREDBY + " Zoom Search Engine
");
}
function ZoomShowSearchTime()
{
if (InitSearchCalled == false)
{
if (IsWarningGiven == false)
document.writeln("
This is an advanced template option. You must call ZoomInitSearch() before this. Please check documentation for more help.
");
IsWarningGiven = true;
return;
}
if (IsNoSearch)
return;
if (Timing == 1)
document.writeln("
" + STR_SEARCH_TOOK + " " + (timeDifference/1000) + " " + STR_SECONDS + ".
\n");
}
// This is the default function and it's all you need to call for the normal result format
function ZoomSearch()
{
var loadingmsg = document.getElementById("loadingmsg");
if (loadingmsg) loadingmsg.style.display = "None";
ZoomInitSearch();
ZoomShowSearchForm();
ZoomShowHeading();
ZoomShowSummary();
ZoomShowCatSummary();
ZoomShowPagesCount();
ZoomShowRecommended();
ZoomShowSorting();
ZoomShowResults();
ZoomShowPageNumbers();
ZoomShowSearchTime();
}