﻿function GetSiteSearchResults(newWindow,frameObject,frameObjectName,fontFace,fontSize,fontColour,linkFace,linkSize,linkColour,resultsText)
{
var sTerms="";
var iDepth = 0;
var sURL = new String(document.location);
if (sURL.indexOf("?") > 0)
{
var arrParams = sURL.split("?");
var arrURLParams = arrParams[1].split("&");
for (var i=0;i<arrURLParams.length;i++)
{
var sParam = arrURLParams[i].split("=");
var sValue = unescape(sParam[1]);
if( sParam[0] == frameObjectName)
	sTerms = sValue;
if( sParam[0] == "depth")
	iDepth = parseInt(sValue);
}
}
var d=frameObject.document;
if (sTerms=="") {d.open(); d.write("<html><head></head><body style=\"background: transparent;\"></body></html>"); d.close();return;}
var sBack=""; for (i=0; i<iDepth; i++) sBack+='..\\\\';
d.open();
d.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">");
d.write("<html lang=\"en\">");
d.write("<head>");
d.write("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">");
d.write("</head>");
d.write("<body style=\"margin: 0px 0px 0px 0px; font-family: "+fontFace+"; font-size: "+fontSize+"; color: "+fontColour+"; background: transparent;\">");
d.write("<div id=\"wpSearchResults\"></div>");
d.write("<script type=\"text/javascript\">");
d.write("var wordMap = new Array(\" pour yourself coffee view minute video learn about techniques incorporated into design publication layout color content work hand deliver magazine that attracts attention retains reader's readers interest coffee news more effective than other multi-paged publications \",\" \",\" \",\" postal address coffee news corpus christi young publishing naples street 78404 telephone 361-814-0866 361-884-9019 email form right contact \",\" terms \",\" safeguarding personal information information that used distinguish identify contact specific individual anyone from whom collect such should expect will carefully protected other dealing with this subject consent exceptions however include business certain publicly available names addresses telephone numbers published directories coffee news readers contest wishing enter monthly contest online regular mail must years older resident winners agree have their name hometown website well heard local radio stations condition receiving prize contact questions concerns inquiries relating privacy policy about treatment personal emailed publisher coffeenewscorpuschristi asked submit request writing privacy policy \",\" search results \",\" reactive fitness centre \",\" reactive fitness centre \",\" reactive fitness centre \",\" \",\" \",\" \",\" \",\" \",\" \",\" \",\" button menu above review local distribution locations \",\" http coffee-news mobi store_locator \",\" advertisers your neighbours click visit advertisers' sites \",\" here's heres what happening this month coffee news georgian area ladies rotary club holding bake sale local charities -local welcoming members call your director more info 222-2222 have non-profit even listed here contact \",\" \",\" \",\" \");");
d.write("var pageMap = new Array(\"Coffee News of Corpus Christi\",\"About Us\",\"Benefits\",\"Contact Us\",\"Terms of Use\",\"Privacy Policy\",\"Search Results\",\"cfaxmenuframe.htm\",\"cfaxframebanner.htm\",\"cf_74.htm\",\"History\",\"Coffee Fax\",\"currentevents\",\"Distribution\",\"Our Clients\",\"Readers Testimonials\",\"Our Contest\",\"dist\",\"franchisees.html\",\"Clientads\",\"happening\",\"Benefits for Advertisers\",\"Benefits for Distribution Locations\",\"Advertisers' Testimonials\");");
d.write("var linkMap = new Array(\"index.html\",\"aboutus.html\",\"advertise.html\",\"contact.html\",\"terms.html\",\"privacy.html\",\"searchresults.html\",\"cfaxmenuframe.htm\",\"cfaxframebanner.htm\",\"cf_74.htm\",\"history.html\",\"page8.html\",\"currentevents.html\",\"distribution.html\",\"clients.html\",\"page80.html\",\"contest.html\",\"dist.html\",\"franchisees.html\",\"CLIENTADS.HTML\",\"happening.html\",\"page84.html\",\"page85.html\",\"page82.html\");");
d.write("var preMap = new Array(\"      Pour yourself a coffee to view  our  5 minute video.  Learn about the techniques  incorporated into the design of our  publication.   Layout, color and content all work hand in hand to deliver a\",\"\",\"\",\"Postal Address Coffee News Corpus Christi D J Young Publishing 145 Naples Street Corpus Christi, TX  78404 Telephone:  361-814-0866 FAX:  361-884-9019 Email:  use our form to the right. contact us Ema\",\"  I Terms of Use \",\" Safeguarding Personal Information  Personal information is any information that can be used to distinguish, identify or contact a specific individual.  Anyone from whom we collect such information sh\",\"search results \",\"REACTIVE fitness centre \",\"REACTIVE fitness centre \",\"REACTIVE fitness centre \",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"Use the button menu above To review our local distribution locations. \",\"http://coffee-news.mobi/store_locator.php \",\"Our advertisers Your neighbours!  Click on the ad to visit our advertisers’ sites. \",\"Here’s what happening this month in the Coffee News of Georgian Bay area.         - Ladies Rotary Club is holding a bake sale for local charities.           -Local BNI is welcoming new members this mo\",\"\",\"\",\"\");");
d.write("function doNav(ind)");
d.write("{");
if (newWindow)
d.write("		 window.open(\""+sBack+"\"+linkMap[ind],\"_blank\");");
else
d.write("		 parent.window.location.href=linkMap[ind];");
d.write("}");
d.write("function wpDoSearch(searchTerms){");
d.write("var terms = searchTerms.split(\" \");");
d.write("if (terms==\"\") return;");
d.write("var results = \"\";");
d.write("var resultscount = 0;");
d.write("for (var i=0; i<wordMap.length; i++)");
d.write("{");
d.write("			var found=true;");
d.write("			for (var j=0; j<terms.length; j++)");
d.write("					if (wordMap[i].indexOf(terms[j].toLowerCase())==-1) found=false;");
d.write("			if (found)");
d.write("			{");
d.write("				 results+=\"<a style=\\\"cursor: pointer; font-family: "+linkFace+"; font-size: "+linkSize+"; color: "+linkColour+"; \\\" onclick=\\\"doNav(\"+i+\");\\\"><u>\"+pageMap[i]+\"</u></a><br>\"+preMap[i]+\"...<br><br>\";");
d.write("				 resultscount++;");
d.write("			}");
d.write("}");
d.write("document.getElementById(\"wpSearchResults\").innerHTML=resultscount+\" "+resultsText+" \"+searchTerms+\"<br><br>\"+results;");
d.write("}");
while(sTerms.indexOf("\"") != -1 ) {
sTerms = sTerms.replace("\"","");
};
d.write("wpDoSearch(\""+sTerms+"\");");
d.write("</script>");
d.write("</body></html>");
d.close();
}
