/* XSearch Engine version5.2		*/
/* Développé by P.Bestebroer		*/
/* http://www.dynamic-core.net	 	*/
/* Traduction française Vincent Vaudey - xseditor@free.fr */

function trecords(){
	this.index=(trecords.count++)
	this.link=''
	this.keywords=''
	this.description=''
	return this
}
trecords.prototype.set=function(link,keywords,description) {
	this.link=link
	this.keywords=keywords
	this.description=description
}
trecords.prototype.searchstring=function() { return this.link+' '+this.keywords+' '+this.description }
trecords.prototype.count=0

function add(link,keywords,description) {
	al=records.length
	records[al]=new trecords()
	records[al].set(link,keywords,description)
}

records = new Array()
finds=0
sites=0
version="5.2"
andresult=false
SortResults=true
display_start=0
displast=50
function qsort(f, l){ 
	var a=f
	var b=l
	var s
	var m = results[(a+b)>>1].val
   	while (a<=b) {
		while (results[a].val>m) {a++}
		while (m>results[b].val) {b--}

		if (a<=b) {
            		s=results[a]
			results[a]=results[b]
			results[b]=s
            	a++
            	b--
        	}
	} 
	if (f<b) this.qsort(f, b)
	if (a<l) this.qsort(a, l)
}
function bsort() {
	for (var i=results.length-1; i>=0; i--) {
		for (var j=i; j>=0; j--) {
			if (results[i].val>results[j].val) {
				s=results[i]
				results[i]=results[j]
				results[j]=s
			}
		}	
	}
}

function searchAll(keyword){
	var timeA=new Date()
	var nw=0
	finds=0
	sites=0

	var x = parseIt(keyword)
	if(x == -1) return
	total_keywords=x

	document.open()
	document.clear()
	document.write('<link rel="stylesheet" href="xsearch.css">')
	AddBody()

	if (keyword.length>50) keyword=keyword.substring(0,60)+"..."

	results=new Array()
	for (q=0; q<records.length; q++) {
		results[q]=new Array()
		results[q].rec=q
		results[q].val=0
	}

	for (nw=0; nw<keywords.length; nw+=1) search(keywords[nw])
	if (andresult) {
		for (a=0; a<results.length; a+=1) {
			if (results[a].val>0) {
				if (results[a].val<=(total_keywords-1)<<1) {
					results[a].val=0
					sites-=1
				}
			}
		}
	}
	if (SortResults && keywords!='[all]') bsort()

	// Now we build the output page
	displast=display_start
	displast+=50
	if (displast>sites) displast=sites

	var timeB=new Date()

	if (finds==0) { display_start=-1; displast=0 }
	document.write("<center><h3>Results <b>"+(display_start+1)+"-"+(displast)+"</b> of <b>"+sites+"</b> - Process time <b>"+((timeB-timeA)/1000)+"</b> seconds.</h3></center>")

	if (displast>sites && finds!=0) displast=sites+1


	if (finds==0) {
		document.write("<h3><font color=green>No matches for <b>''"+keyword+"''</b></font></h3>"+
						"<p>Your search - <b>"+keyword+"</b> - returned no results from the database.</p>"+
						"<LI>Verify you search term is properly spelled and/or punctuated.</li>"+
						"<LI>Try fewer words.</li>"+
						"<LI>Try using a more general search term.</li>"+
						"<LI>Check the library <a href=http://alpha.fdu.edu/library/site.html>site index</a> for a list of all pages in the library web space.</li></span>"+
						"</p>")
		DisplayXSearch()
		document.close()
		return
	}

	q2=display_start
	q3=displast
	for (q=display_start; q<q3; q+=1) {
		if (results[q].val>0) {
			rc=results[q].rec
			document.write("<span style='padding-left: 4px' class='xtitle'>"+records[rc].link+"</span><br>")
			x1=records[rc].link.indexOf('http://')
			if (x1==-1) x1=records[rc].link.indexOf('href=')+5
			else x1+=7
			x2=records[rc].link.indexOf('>')-1
			if (x1>0 && x2>0) {
				tmp=records[rc].link.substring(x1,x2)
				x2=tmp.indexOf(' ')
				if (x2>0) tmp=tmp.substring(0,x2)
				if (tmp.substring(0,1)=="'") tmp=tmp.substring(1,tmp.length-2)
				if (tmp.substring(0,1)=='"') tmp=tmp.substring(1,tmp.length-1)
				document.write("<table border=0 width=500><tr><td><span class='xresult'>"+records[rc].keywords+"</span><span class='xresult'>"+records[rc].description+"</td></tr></table><br>")
			}
			q2++
   		}
	}

	if (finds>50) {
		document.write("<BR>")
		pages=Math.round(finds/50)
		if (finds%50<6)	pages++

		// Créé la chaîme de paramètres
		paramstring=searchname+"?keywords="+keyword+"&and="+andresult+"&sort="+SortResults

		document.write("<center><span class='xsmall'>")
		if (display_start>0) document.write("<a href='"+paramstring+"&disp="+(display_start-10)+"'>Previous Page</a>")
		document.write("&nbsp;&nbsp;&nbsp;")

		for (i=1; i<=pages; i+=1){
			if ((((i-1)*50)+1)<=sites) document.write("<a href='"+paramstring+"&disp="+(((i-1)*50))+"'>"+i+"</a>&nbsp&nbsp ")
		}
		document.write("&nbsp;&nbsp;&nbsp;")
		if (displast<=sites) document.write("<a href='"+paramstring+"&disp="+(displast)+"'>Next Page</a>")
		document.write("</span></center>")
	}
	DisplayXSearch()
	document.close()
}

function Cat() {
	document.open()
	document.clear()
	document.write('<link rel="stylesheet" href="xsearch.css">')
	AddBody()
	DisplayXSearch()
	document.close()
}

function stripInput(key) {
	while(key.substring(0,1) == ","  || key.substring(0,1) == " " ) key = key.substring(1,key.length)
	while(key.substring(key.length-1,key.length) == "," || key.substring(key.length-1,key.length) == " ") key = key.substring(0,key.length-1)
	return key
}

function parseIt(key) {
	key=stripInput(key)+" "
	var y=0

	while(key.indexOf(" ") > 0) {
		if (key.substring(0,1)=='"') {
			var pos=key.indexOf('"',2)
			keywords[y]=key.substring(1,pos)
			keywords[y]=stripInput(keywords[y])
			y++
			key=key.substring(pos+1,key.length)
		} else {
			var pos=key.indexOf(' AND ')
			if ((pos>0) && (key.indexOf(' ')>=pos)) {
				pos=key.indexOf(' ',pos+5)
				keywords[y]=key.substring(0,pos)
				keywords[y]=stripInput(keywords[y])
				y++
				key=key.substring(pos+1,key.length)
				if (key.substring(0,4)=='AND ') {
					pos=keywords[y-1].indexOf(' ')+5
					key=keywords[y-1].substring(pos,keywords[y-1].length)+' '+key
				}
			} else {
		  		var pos=key.indexOf(' OR ')
		  		if ((pos>0) && (key.indexOf(' ')>=pos))	{
					pos=key.indexOf(' ')
					keywords[y]=key.substring(0,pos)
					keywords[y]=stripInput(keywords[y])
					if (keywords[y]!=keywords[y-1])	y++
					key=key.substring(pos+1,key.length)
					pos=key.indexOf('OR ')
					key=key.substring(pos+3,key.length)
					pos=key.indexOf(' ')
					keywords[y]=key.substring(0,pos)
					keywords[y]=stripInput(keywords[y])
					y++
					key=key.substring(pos+1,key.length)
					if (key.substring(0,3)=='OR ') key=keywords[y-1]+' '+key
				} else {
					var pos = key.indexOf(" ")
					keywords[y]=key.substring(0,pos)
					keywords[y] = stripInput(keywords[y])
					y++
					if(y > 50) return -1
					key=key.substring(pos+1,key.length)
				}
			}
		}
	}
	return y-1
}

var keywords = new Array()
var results

function AddBody() {
	var keytext='"'+searchname+'?keywords="+'
	var andtext='"&and="+'

	document.write('<script>function doSearch(){'+
						'searchwords=document.searchform.searchwords.value; '+
						'while (searchwords.indexOf(" ")>-1){ pos=searchwords.indexOf(" ");'+
						'searchwords=searchwords.substring(0,pos)+"+"+searchwords.substring(pos+1); }'+
						'document.location='+keytext+' searchwords+'+andtext+'"0"}'+
						'<'+'/'+'script>'
						)

	templateBody()
	document.write("<script language='javascript' type='text/javascript'>function noenter() {return !(window.event && window.event.keyCode == 13);}function startSearch(){if(document.searchForm.searchText.value == ''){alert('Please enter a search term.'); return false;}searchString = document.searchForm.searchText.value; if(searchString != ''){searchEngine = document.searchForm.whichEngine.selectedIndex + 1;finalSearchString = '';if(searchEngine == 1){alert('Please choose what you would like to search'); return false;}if(searchEngine == 2){location.href = 'http://alpha.fdu.edu/library/xseditor/site/xsearch-5.2.htm?keywords=' + searchString;}if(searchEngine == 3){location.href = 'http://alpha.fdu.edu/library/xseditor/db/xsearch-5.2.htm?keywords=' + searchString;}if(searchEngine == 4){finalSearchString = 'http://inside.fdu.edu/cgi-bin/perio/sperio2.pl?field=item&query=' + searchString; window.open(finalSearchString,'periodicals','menubar=no,location=no,width=430,height=350,scrollbars=yes,resizable=yes');}if(searchEngine == 5){location.href = 'xsearch-5.2.htm?keywords=' + searchString;}if(searchEngine == 6){location.href = 'http://www.google.com/search?hl=en&ie=UTF-8&oe=UTF-8&btnG=Google+Search&q=' + searchString;}}}</script><basefont face='Book Antiqua'>      <form name='searchForm'>        <input type='hidden' value='default' name='query'><input type='hidden' CHECKED value='item' name='field'>        <div align='center'>          <center>        <table cellspacing='0' cellpadding='0' bgcolor='#FFFFCC' style='border-collapse: collapse' bordercolor='#111111'>          <tr>            <td width='166' height='20'>            <p style='margin-top: 0; margin-bottom: 0' align='left'><font face='Verdana, Arial, sans-serif' size='1'>&nbsp;Search for:</font></td>            <td width='141' height='20'>            <p style='margin-top: 0; margin-bottom: 0'><font face='Verdana, Arial, sans-serif' size='1'>Search target:</font>            </td>            <td width='74' height='20'>            <p style='margin-top: 0; margin-bottom: 0'>&nbsp; </td>          </tr>          <tr>            <td width='166' height='26'>&nbsp;<input name='searchText' size='20'> </td>            <td width='141' height='26'>            <p align='left'><select name='whichEngine'>            <option selected>Choose One</option>            <option>Library web site</option>            <option>Databases</option>            <option>Periodicals</option>            <option>FDU staff directory</option>            <option>Google</option>            </select>            </td>            <td width='74' height='26'>            <p align='center'><input onMouseDown='startSearch();' type='button' value='Search'></td>          </tr>          <tr>            <td width='381' height='10' colspan='3'>    <font style='FONT-SIZE: 11pt' face='Book Antiqua'>    <img height='1' alt src='images/spacer.gif' width='1' border='0' name='ftp_r3_c1'></font></td>          </tr>        </table>      </form>    </div>   </center>")
		if (usebannercode) bannerCode()
}

function DisplayXSearch() {
	// Cette ligne peut être effacée, mais, s'il vous plaît, n'ajoutez rien comme 
	// copyright <votre nom> parce que c'est interdit, et
	// si vous enlevez ou changez cette ligne, assurez vous qu'il y ait une mention
	// et un lien à www.dynamic-core.net de sorte que d'autre personnes puissent également
	// se faire la main sur ce moteur de recherche GRATUIT.. Merci.
	document.write("<h3><center>Powered by <a href=http://www.dynamic-core.net>XSearch "+version+"</a></center></h3>")
	templateEnd()
}

function search(keyword) {
	var hit=0
	var addcomplete=0

	for (q=0; q<records.length; q++) {
		addcomplete=0
		search_parm=" "+records[q].searchstring()+" "
		search_parm=search_parm.toLowerCase()

		if (keyword.indexOf(' AND ')>0) {
			firstword=keyword.substring(0,keyword.indexOf(' ')).toLowerCase()
			lastword=keyword.substring(keyword.indexOf(' AND ')+5,keyword.length).toLowerCase()
			if ((search_parm.indexOf(" "+firstword+" ") != -1) && (search_parm.indexOf(" "+lastword+" ")!= -1 )) {
				hit++
				finds++
				if(hit<2) { 
					if (results[q].val==0) sites++
					results[q].val +=2
				} 
			}
		} else {
			keyword=keyword.toLowerCase()
			if ((search_parm.indexOf(" "+keyword+" ") != -1) ||(keyword=="[all]")) {
				hit++
				finds++
				if(hit<2) { 
					if (results[q].val==0) sites++
					results[q].val+=2
				} 
			} else {
				// recherche sur des moitiés de résultats (par exemple recherche:java trouve:javascript)
				if (search_parm.indexOf(keyword) != -1)	{
					hit++
					finds++
					if(hit < 2) {
						if (results[q].val==0) sites++
						results[q].val+=1
						x=search_parm.indexOf(keyword)+keyword.length
						pos=search_parm.substring(1,x-keyword.length)
						while (pos.indexOf(" ")!=-1) {
							y=pos.indexOf(" ")
							pos=pos.substring(y+1,pos.length)
						}
						if (pos.length<=2) addcomplete++
	
						pos=search_parm.substring(x,search_parm.length)
						fullresult=search_parm.substring(x,x+pos.indexOf(" "))
						
						if (fullresult.length<=2) addcomplete++
						if (addcomplete>1) results[q].val+=1
					}
				}
			}
		}
		hit=0
	} 
}                                       

var searchwords = ''
var newload = true

function initXsearch() {
	if (searchwords!='') searchAll(searchwords)
	else if (newload) Cat()
}

function tparams(){
	parameters=document.location.search
	parameters=unescape(parameters.substring(1,parameters.length)+'&')

	this.params=new Array()
	i=0
	while (parameters.indexOf('&',0)!=-1) {
		al=this.params.length
		this.params[al]=new Array()
	
		tmp=parameters.substring(0,parameters.indexOf('&',0))
		parameters=parameters.substring(parameters.indexOf('&',0)+1)

		if (tmp.indexOf('=')!=-1) {
			this.params[al].command=tmp.substring(0,tmp.indexOf('='))
			this.params[al].value=tmp.substring(tmp.indexOf('=')+1)
		} else {
			this.params[al].command=tmp
			this.params[al].value=''
		}
	}

	return this
}
tparams.prototype.getValue=function(param){
	value=''
	param=param.toLowerCase()
	al=this.params.length
	for (var i=0; i<al; i+=1) if (this.params[i].command==param) value=this.params[i].value
	return value
}

params=new tparams()
if (params.getValue('keywords')!=''){
	searchwords=params.getValue('keywords')
	origsearchwords=searchwords
	while (searchwords.indexOf('+')>-1) {
		pos=searchwords.indexOf('+')
		searchwords=searchwords.substring(0,pos)+' '+searchwords.substring(pos+1)
	}
}
if (params.getValue('sort')!='')
	if (params.getValue('sort')=='0' || params.getValue('sort')=='false') SortResults=false
	else SortResults=true
if (params.getValue('and')!='')
	if (params.getValue('and')=='0' || params.getValue('and')=='false') andresult=false
	else andresult=true
if (params.getValue('disp')!='') display_start=parseInt(params.getValue('disp'))

