<!-- Begin
var item = new Array();

// "Page Name","path","Page Title","Many,Key,Words","Descriptive Comments"

c=0; item[c]=new Array("index.html","","Dezinepros.com","index,main,start,home,front,graphic design,logos,web design,design,business cards,estimates,quotes,ecards,free cards,games,web development,links,software,support,resources,page layout,pre-press,exporting files,Quark,Adobe,Photoshop,Illustrator,Image Ready,Dreamweaver,Flash,Flash MX,clients,software,websites,free stuff,design solutions,profile,company profile,product profile,intelligent design,modern,clean,professional,business,business people,consulting","Dezinepros.com offers professional design services and design consulting. We specialize in graphic design, web design and custom graphics.");
c++; item[c]=new Array("bio.html","/","Bio","about,author,clients,who,Andrew,Andrew Cranston,personal statement,history,interests,car racing,mac,computers,art,painting,animation,reading,education,general information","General information about us including current projects, interests, qualifications, history and more.");


page="<html><head><title>Search Results</title></head><body leftmargin=0 rightmargin=0 topmargin=0 bottommargin=0 bgcolor='#FFFFFF'><center><table width=95% align=center cellpadding=0 cellspacing=5 border=0><tr align=center colspan=2><td width=5% rowspan=2, valign=top bgcolor='#66cc99'></td><td width=90% valign=top bgcolor='#FFFFFF'><table width=100% border=0 align=center cellspacing=10>";

function search(frm) {
win = window.open("","_self","scrollbars");
win.document.write(page);
txt = frm.srchbox.value.split(" ");
fnd = new Array(); total=0;
for (i = 0; i < item.length; i++) {
fnd[i] = 0; order = new Array(0, 4, 2, 3);
for (j = 0; j < order.length; j++)
for (k = 0; k < txt.length; k++)
if (item[i][order[j]].toLowerCase().indexOf(txt[k]) > -1 && txt[k] != "")
fnd[i] += (j+1);
}
for (i = 0; i < fnd.length; i++) {
n = 0; w = -1;
for (j = 0;j < fnd.length; j++)
if (fnd[j] > n) { n = fnd[j]; w = j; };
if (w > -1) total += show(w, win, n);
fnd[w] = 0;
}
win.document.write("</table></tr></td><tr bgcolor=d8d8d8><td align=center, valign=top><table width=100%><tr colspan=2><td font class=general>Total found: "+total+"</td><td align=center, valign=top, bgcolor=d8d8d8 font class=titles><a href='/search.html' target='_self'>Search again</a></td></tr></table></td></tr></table></center></body></html>");
win.document.close();
}
function show(which,wind,num) {
link = item[which][1] + item[which][0]; 
line = "<tr><td><a href='"+link+"'>"+item[which][2]+"</a> Score: "+num+"<br>";
line += item[which][4] + "<br>"+link+"</td></tr>";
wind.document.write(line);
return 1;
}
//  End -->