	
var key = "";

// Search mode AND(1) OR(0)
var	SWay = 1;


function makeEntry (){
	this.Name="";
	this.URL = "";
	this.Desc = "";
	this.Category = "";
	return this;
}

function makeArray(n) {
	this.length = n;
	for (var k = 1; k <= n; k++) {
		this[k] = "";
	}
	return this;
}

function makeLinks(size) {
	this.length = size;
	for (var r=1; r<= size; r++) {
		this[r] = new makeEntry();
		this[r].Name = namesArray[r];
		this[r].URL = urlsArray[r];
		this[r].Desc = descArray[r];
	}
	return this;
}

function showAll(linkobj) {
	for (var s=1; s<= linkobj.length; s++) {
		showLink(linkobj,s);
	}
}

function showLink (links, index) {
	document.write("<tr><td>" + links[index].Name + "</td>");
	document.write("<td><a href=" + links[index].URL + ">" + links[index].Desc + "</a></td></tr>");
}


function makeSrchKey() {
	this.SrchKeyIndex="";
	this.DataIndex = "";
	return this;
}

function makeSrchKeyList(size) {	
	this.length = size;
	for (var r=0; r< size; r++) {
		this[r] = new makeSrchKey();
		this[r].SrchKeyIndex = "";
		this[r].DataLength = "";
	}
	return this;

}

function getSWay(){
	var way = 1;
	if( navigator.appName.charAt(0) != "N"){
		way = SWay;
	}
	return way;
}




function resopen()
{
	winOpen('epsonwin4','result.htm',0,100,285,iheight-150);
	
	if(navigator.appName.indexOf("Netscape") != -1){
		return false;
	}
}


function searchLinks(links, keyword){
	var searchWay = getSWay();

	var srchlinksize=0

	var srchnamesArray = new makeArray(srchlinksize);
	var srchurlsArray = new makeArray(srchlinksize);
	var srchdescArray = new makeArray(srchlinksize);


	var srcharraycount=0


	var newkey;
	if (keyword != null) {
		newkey=keyword.toLowerCase();
	}
	
	var strsplittmp;
	strsplittmp = newkey.split(" ");
	
	var i;

	for (var q=1; q<=links.length; q++) {
		var newdesc=links[q].Desc.toLowerCase();
		var newname=links[q].Name.toLowerCase();

		var bRet = 0;
		if (searchWay == 1){
			if(newdesc.indexOf(newkey) != -1) {
				bRet = 1;
			} else {
				var strSearch;
				bRet = 1;
				for (i=0; i<strsplittmp.length; i++) {
					strSearch = strsplittmp[i];
					if(newdesc.indexOf(strSearch) == -1){
						bRet = 0;
						break;
					}
				}
			}
		} else {
			var strSearch;
			if(strsplittmp.length == 1){
				if(newdesc.indexOf(newkey) != -1) {
					bRet = 1;
				}
			} else {
				for (i=0; i<strsplittmp.length; i++) {
					strSearch = strsplittmp[i];
					if(newdesc.indexOf(strSearch) != -1){
						bRet = 1;
					}
				}
			}
		}
		
		if(bRet == 1){
			srchnamesArray[srcharraycount] = links[q].Name;
			srchurlsArray[srcharraycount] = links[q].URL;
			srchdescArray[srcharraycount] = links[q].Desc;
			srcharraycount += 1;
			continue;
		}

		var bRet = 0;
		if (searchWay == 1){
			if(newname.indexOf(newkey) != -1) {
				bRet = 1;
			} else {
				var strSearch;
				bRet = 1;
				for (i=0; i<strsplittmp.length; i++) {
					strSearch = strsplittmp[i];
					if(newname.indexOf(strSearch) == -1){
						bRet = 0;
						break;
					}
				}
			}
		} else {
			var strSearch;
			if(strsplittmp.length == 1){
				if(newname.indexOf(newkey) != -1) {
					bRet = 1;
				}
			} else {
				for (i=0; i<strsplittmp.length; i++) {
					strSearch = strsplittmp[i];
					if(newname.indexOf(strSearch) != -1){
						bRet = 1;
						break;
					}
				}
			}
		}
		
		if(bRet == 1){
			srchnamesArray[srcharraycount] = links[q].Name;
			srchurlsArray[srcharraycount] = links[q].URL;
			srchdescArray[srcharraycount] = links[q].Desc;
			srcharraycount += 1;
			continue;
		}
	}

	var strsplittmp;
	strsplittmp = newkey.split(" ");
	var SrchKeylist = new makeSrchKeyList(strsplittmp.length);


	
	srchlinksize = srcharraycount;

	document.open();

	document.writeln("<!-- saved from url=(0013)about:internet -->");
	document.writeln("<HTML><HEAD><TITLE>Search Results</TITLE>");
	document.writeln("<META http-equiv=\"content-type\" content=\"text/html;charset=UTF-8\">");
	document.writeln("<META NAME=\"Version\" CONTENT=\"NPD2390-00\">");
	document.writeln("<LINK href=\"files/_style.css\" rel=stylesheet>");
	
	document.writeln("<SCRIPT language=\"JavaScript\">");
	document.writeln("<!--");
	document.writeln("function goMain(url){");
	document.writeln("	window.opener.location.href=url\;");
	document.writeln("}");
	document.writeln("	--></SCRIPT>");
	
	document.writeln("</HEAD>");
	document.writeln("<BODY target=\"main\" MARGINWIDTH=\"0\" MARGINHEIGHT=\"0\" topMargin=\"0\" text=\"#000000\" bgColor=\"#ffffff\" leftMargin=\"0\" >");

	document.writeln("<TABLE bgcolor=\"#03030F\" cellSpacing=0 cellPadding=5 border=0 width=\"100%\">");
	document.writeln("<TBODY>");
	document.writeln("<TR vAlign=\"top\">");
	document.writeln("<TD><SPAN class=\"htmltitle\">Search Results</DIV></TD>");
	document.writeln("</TR>");
	document.writeln("</TBODY></TABLE>");

	document.writeln("<P>");
	document.writeln("<CENTER>");
	document.writeln("<TABLE bgcolor=\"#ffffff\" cellSpacing=0 cellPadding=2 border=0 width=\"95%\">");
	document.writeln("<TR>");
	document.writeln("<TD>");
	document.writeln("<P><SPAN class=\"body\">");
	document.writeln("");
	document.writeln("</SPAN>");
	document.writeln("<P><SPAN class=body>");
	document.writeln("Search results for : <B>" +keyword.toUpperCase() +"</B><BR><P>");

	document.writeln("<!-- KeyWord Start -->");

	newkey=keyword.toLowerCase();


	var strsplittmp;
	strsplittmp = newkey.split(" ");
	var strSearch = strsplittmp[0];
	
	for (var q=0; q<srchlinksize; q++) {
		var iIndex;
		var newDst=srchnamesArray[q].toLowerCase();
		if(srchnamesArray[q].length == 0){
			var newdsc = srchdescArray[q].toLowerCase();
			
			for(var iCnt=0; iCnt<strsplittmp.length; iCnt++){
				var strSearch = strsplittmp[iCnt];
				iIndex = newdsc.indexOf(strSearch);
				if (searchWay == 1){ //AND
					if(iIndex == -1){
						break;
					}
				} else { //OR
					if(iIndex != -1){
						break;
					}
				}
			}
			var ihit = 0;
			if(iIndex != -1){
				var datatmp = srchdescArray[q].toLowerCase();
				for(var iCnt=0; iCnt<strsplittmp.length; iCnt++){
					var strSearch = strsplittmp[iCnt];
					if(datatmp.indexOf(strSearch) == -1){
						SrchKeylist[iCnt].SrchKeyIndex = datatmp.length;
						SrchKeylist[iCnt].DataLength = 0;
						continue;
					}
					SrchKeylist[iCnt].SrchKeyIndex = datatmp.indexOf(strSearch);
					SrchKeylist[iCnt].DataLength = strSearch.length;
					var iflag=1;
					for(var iCnt3=0; iCnt3<iCnt; iCnt3++){
						if((SrchKeylist[iCnt].SrchKeyIndex > SrchKeylist[iCnt3].SrchKeyIndex) && (SrchKeylist[iCnt].SrchKeyIndex < (SrchKeylist[iCnt3].SrchKeyIndex + SrchKeylist[iCnt3].DataLength))){
							SrchKeylist[iCnt].SrchKeyIndex = datatmp.length;
							SrchKeylist[iCnt].DataLength = 0;
							iflag=0;
							break;	
						}
					}
					if(iflag == 0){
						continue;
					}
					for(var iCnt3=iCnt - 1; iCnt3>=0; iCnt3--){
						if((SrchKeylist[iCnt].SrchKeyIndex < SrchKeylist[iCnt3].SrchKeyIndex) && ((SrchKeylist[iCnt].SrchKeyIndex + SrchKeylist[iCnt].DataLength) > (SrchKeylist[iCnt3].SrchKeyIndex + SrchKeylist[iCnt3].DataLength))){
							SrchKeylist[iCnt3].SrchKeyIndex = datatmp.length;
							SrchKeylist[iCnt3].DataLength = 0;
							ihit--;
						}
					}
					ihit++;
				}

				for(iCnt=0; iCnt<strsplittmp.length - 1; iCnt++){
					for (var iCnt2=1; iCnt2<strsplittmp.length; iCnt2++){
						if(SrchKeylist[iCnt].SrchKeyIndex > SrchKeylist[iCnt2].SrchKeyIndex){
							var SrchKeyIndextemp = SrchKeylist[iCnt].SrchKeyIndex;
							var DataLengthtemp = SrchKeylist[iCnt].DataLength;
							SrchKeylist[iCnt].SrchKeyIndex = SrchKeylist[iCnt2].SrchKeyIndex;
							SrchKeylist[iCnt].DataLength = SrchKeylist[iCnt2].DataLength;
							SrchKeylist[iCnt2].SrchKeyIndex = SrchKeyIndextemp;
							SrchKeylist[iCnt2].DataLength = DataLengthtemp;
						}
					}
				}

				document.write("<DIV class=\"result\">" + srchdescArray[q].substring(0, SrchKeylist[0].SrchKeyIndex));
				for(iCnt=0; iCnt<ihit; iCnt++){
					if(iCnt < (ihit - 1)){
						document.write("<font color=\"red\">" + srchdescArray[q].substring(SrchKeylist[iCnt].SrchKeyIndex, SrchKeylist[iCnt].SrchKeyIndex + SrchKeylist[iCnt].DataLength) + "</font>" + srchdescArray[q].substring(SrchKeylist[iCnt].SrchKeyIndex + SrchKeylist[iCnt].DataLength, SrchKeylist[iCnt + 1].SrchKeyIndex));
					} else {
						document.write("<font color=\"red\">" + srchdescArray[q].substring(SrchKeylist[iCnt].SrchKeyIndex, SrchKeylist[iCnt].SrchKeyIndex + SrchKeylist[iCnt].DataLength) + "</font>" + srchdescArray[q].substring(SrchKeylist[iCnt].SrchKeyIndex + SrchKeylist[iCnt].DataLength, srchdescArray[q].length));
					}
				}
				document.write("</DIV>");
				
			}else {
				document.write("<DIV class=\"result\">" + srchdescArray[q] + "</DIV>");
			}
		} else {
			iIndex = newDst.indexOf(strSearch);
			for(var iCnt=0; iCnt<strsplittmp.length; iCnt++){
				var strSearch = strsplittmp[iCnt];
				iIndex = newDst.indexOf(strSearch);
				if (searchWay == 1){ //AND
					if(iIndex == -1){
						break;
					}
				} else { //OR
					if(iIndex != -1){
						break;
					}
				}
			}
			var redflag = 0;
			if(iIndex != -1){
				redflag = 1;
			}
			var markerflag = 0;
			if(q==0){
				markerflag = 1;
			} else {
				var newSrc=srchnamesArray[q-1].toLowerCase();

				if((newSrc.length == 0) || (newDst.indexOf(newSrc) == -1) ||  ( (newDst.indexOf(newSrc) != -1) && (newDst.length != newSrc.length))) {
					markerflag = 1;
				}
			}
			if(markerflag == 1){
				if(redflag == 1){
					
					var datatmp = srchnamesArray[q].toLowerCase();
					var ihit = 0;
					for(var iCnt=0; iCnt<strsplittmp.length; iCnt++){
						var strSearch = strsplittmp[iCnt];
						if(datatmp.indexOf(strSearch) == -1){
							SrchKeylist[iCnt].SrchKeyIndex = datatmp.length;
							SrchKeylist[iCnt].DataLength = 0;
							continue;
						}
						SrchKeylist[iCnt].SrchKeyIndex = datatmp.indexOf(strSearch);
						SrchKeylist[iCnt].DataLength = strSearch.length;
						var iflag=1;
						for(var iCnt3=0; iCnt3<iCnt; iCnt3++){
							if((SrchKeylist[iCnt].SrchKeyIndex > SrchKeylist[iCnt3].SrchKeyIndex) && (SrchKeylist[iCnt].SrchKeyIndex < (SrchKeylist[iCnt3].SrchKeyIndex + SrchKeylist[iCnt3].DataLength))){
								SrchKeylist[iCnt].SrchKeyIndex = datatmp.length;
								SrchKeylist[iCnt].DataLength = 0;
								iflag=0;
								break;	
							}
						}
						if(iflag == 0){
							continue;
						}
						for(var iCnt3=iCnt - 1; iCnt3>=0; iCnt3--){
							if((SrchKeylist[iCnt].SrchKeyIndex < SrchKeylist[iCnt3].SrchKeyIndex) && ((SrchKeylist[iCnt].SrchKeyIndex + SrchKeylist[iCnt].DataLength) > (SrchKeylist[iCnt3].SrchKeyIndex + SrchKeylist[iCnt3].DataLength))){
								SrchKeylist[iCnt3].SrchKeyIndex = datatmp.length;
								SrchKeylist[iCnt3].DataLength = 0;
								ihit--;
							}
						}
						ihit++;
					}
		
					for(iCnt=0; iCnt<strsplittmp.length - 1; iCnt++){
						for (var iCnt2=1; iCnt2<strsplittmp.length; iCnt2++){
							if(SrchKeylist[iCnt].SrchKeyIndex > SrchKeylist[iCnt2].SrchKeyIndex){
								var SrchKeyIndextemp = SrchKeylist[iCnt].SrchKeyIndex;
								var DataLengthtemp = SrchKeylist[iCnt].DataLength;
								SrchKeylist[iCnt].SrchKeyIndex = SrchKeylist[iCnt2].SrchKeyIndex;
								SrchKeylist[iCnt].DataLength = SrchKeylist[iCnt2].DataLength;
								SrchKeylist[iCnt2].SrchKeyIndex = SrchKeyIndextemp;
								SrchKeylist[iCnt2].DataLength = DataLengthtemp;
							}
						}
					}

					document.write("<DIV class=\"result\">" + srchnamesArray[q].substring(0, SrchKeylist[0].SrchKeyIndex));
					for(iCnt=0; iCnt<ihit; iCnt++){
						if(iCnt < (ihit - 1)){
							document.write("<font color=\"red\">" + srchnamesArray[q].substring(SrchKeylist[iCnt].SrchKeyIndex, SrchKeylist[iCnt].SrchKeyIndex + SrchKeylist[iCnt].DataLength) + "</font>" + srchnamesArray[q].substring(SrchKeylist[iCnt].SrchKeyIndex + SrchKeylist[iCnt].DataLength, SrchKeylist[iCnt + 1].SrchKeyIndex));
						} else {
							document.write("<font color=\"red\">" + srchnamesArray[q].substring(SrchKeylist[iCnt].SrchKeyIndex, SrchKeylist[iCnt].SrchKeyIndex + SrchKeylist[iCnt].DataLength) + "</font>" + srchnamesArray[q].substring(SrchKeylist[iCnt].SrchKeyIndex + SrchKeylist[iCnt].DataLength, srchnamesArray[q].length));
						}
					}
				
					document.write("</DIV>");
					
				} else {
					document.write("<DIV class=\"result\">" + srchnamesArray[q] + "</DIV>");
				}
			}
		}
		newDst=srchdescArray[q].toLowerCase();
		for(var iCnt=0; iCnt<strsplittmp.length; iCnt++){
			var strSearch = strsplittmp[iCnt];
			iIndex = newDst.indexOf(strSearch);
			if (searchWay == 1){ //AND
				if(iIndex == -1){
					break;
				}
			} else { //OR
				if(iIndex != -1){
					break;
				}
			}
		}
		if(iIndex != -1){
			
			var datatmp = srchdescArray[q].toLowerCase();
			var ihit = 0;
			for(var iCnt=0; iCnt<strsplittmp.length; iCnt++){
				var strSearch = strsplittmp[iCnt];
				if(datatmp.indexOf(strSearch) == -1){
					SrchKeylist[iCnt].SrchKeyIndex = datatmp.length;
					SrchKeylist[iCnt].DataLength = 0;
					continue;
				}
				SrchKeylist[iCnt].SrchKeyIndex = datatmp.indexOf(strSearch);
				SrchKeylist[iCnt].DataLength = strSearch.length;
				var iflag=1;
				for(var iCnt3=0; iCnt3<iCnt; iCnt3++){
					if((SrchKeylist[iCnt].SrchKeyIndex > SrchKeylist[iCnt3].SrchKeyIndex) && (SrchKeylist[iCnt].SrchKeyIndex < (SrchKeylist[iCnt3].SrchKeyIndex + SrchKeylist[iCnt3].DataLength))){
						SrchKeylist[iCnt].SrchKeyIndex = datatmp.length;
						SrchKeylist[iCnt].DataLength = 0;
						iflag=0;
						break;	
					}
				}
				if(iflag == 0){
					continue;
				}
				for(var iCnt3=iCnt - 1; iCnt3>=0; iCnt3--){
					if((SrchKeylist[iCnt].SrchKeyIndex < SrchKeylist[iCnt3].SrchKeyIndex) && ((SrchKeylist[iCnt].SrchKeyIndex + SrchKeylist[iCnt].DataLength) > (SrchKeylist[iCnt3].SrchKeyIndex + SrchKeylist[iCnt3].DataLength))){
						SrchKeylist[iCnt3].SrchKeyIndex = datatmp.length;
						SrchKeylist[iCnt3].DataLength = 0;
						ihit--;
					}
				}
				ihit++;
			}

			for(iCnt=0; iCnt<strsplittmp.length - 1; iCnt++){
				for (var iCnt2=1; iCnt2<strsplittmp.length; iCnt2++){
					if(SrchKeylist[iCnt].SrchKeyIndex > SrchKeylist[iCnt2].SrchKeyIndex){
						var SrchKeyIndextemp = SrchKeylist[iCnt].SrchKeyIndex;
						var DataLengthtemp = SrchKeylist[iCnt].DataLength;
						SrchKeylist[iCnt].SrchKeyIndex = SrchKeylist[iCnt2].SrchKeyIndex;
						SrchKeylist[iCnt].DataLength = SrchKeylist[iCnt2].DataLength;
						SrchKeylist[iCnt2].SrchKeyIndex = SrchKeyIndextemp;
						SrchKeylist[iCnt2].DataLength = DataLengthtemp;
					}
				}
			}

			document.write("<DIV class=\"resultlink\"><A href=\"javascript:goMain(\'" + srchurlsArray[q] + "\')\">" + srchdescArray[q].substring(0, SrchKeylist[0].SrchKeyIndex));
			for(iCnt=0; iCnt<ihit; iCnt++){

				if(iCnt < (ihit - 1)){
					document.write("<font color=\"red\">" + srchdescArray[q].substring(SrchKeylist[iCnt].SrchKeyIndex, SrchKeylist[iCnt].SrchKeyIndex + SrchKeylist[iCnt].DataLength) + "</font>" + srchdescArray[q].substring(SrchKeylist[iCnt].SrchKeyIndex + SrchKeylist[iCnt].DataLength, SrchKeylist[iCnt + 1].SrchKeyIndex));
				} else {
					document.write("<font color=\"red\">" + srchdescArray[q].substring(SrchKeylist[iCnt].SrchKeyIndex, SrchKeylist[iCnt].SrchKeyIndex + SrchKeylist[iCnt].DataLength) + "</font>" + srchdescArray[q].substring(SrchKeylist[iCnt].SrchKeyIndex + SrchKeylist[iCnt].DataLength, srchdescArray[q].length));
				}
			}
			document.write("</A></DIV>");
			
		} else {
			document.write("<DIV class=\"resultlink\"><A href=\"javascript:goMain(\'" + srchurlsArray[q] + "\')\">" + srchdescArray[q] + "</A></DIV>");
		}
	}


	document.writeln("");
	document.writeln("<!-- KeyWord End -->");

	document.writeln("<P>");	
	document.writeln("<DIV class=\"body\">");
	document.writeln("If you do not find the results you are looking for, see Search Tips.</DIV>");
	document.writeln("<DIV class=\"resultlink\">");
	document.write("<A href=\"javascript:goMain(\'sch.htm\')\">Search Tips</A></DIV>");

	document.writeln("</TD>");
	document.writeln("</TR>");
	document.writeln("</TABLE>");
	document.writeln("</CENTER>");
	document.writeln("</P>");
	document.writeln("<TABLE width=\"100%\" cellSpacing=0 cellPadding=5 border=0 bgcolor=\"#03030F\">");
	document.writeln("<TBODY>");
	document.writeln("<TR vAlign=\"top\">");
	document.writeln("<TD><IMG src=\"files/20.gif\"></TD>");
	document.writeln("</TR>");

	document.writeln("</TBODY>");
	document.writeln("</TABLE>");

	document.writeln("</BODY>");
	document.writeln("</HTML>");

	document.close();
}



var linksize=0

namesArray = new makeArray(linksize);
urlsArray = new makeArray(linksize);
descArray = new makeArray(linksize);


var arraycount=0

arraycount += 1
	
namesArray[arraycount] = ""
urlsArray[arraycount] = "ltips_2.htm#S-00600-00300-00200"
descArray[arraycount] = "arp"
	
arraycount += 1
	
namesArray[arraycount] = ""
urlsArray[arraycount] = "lnwsw_3.htm#S-00400-00300-00200"
descArray[arraycount] = "Automatic Private IP Addressing (APIPA)"
	
arraycount += 1
	
namesArray[arraycount] = ""
urlsArray[arraycount] = "lnwsw_3.htm#S-00400-00300-00200"
descArray[arraycount] = "Default gateway"
	
arraycount += 1
	
namesArray[arraycount] = ""
urlsArray[arraycount] = "lnwsw_3.htm#S-00400-00300-00200"
descArray[arraycount] = "Dynamic DNS"
	
arraycount += 1
	
namesArray[arraycount] = "EpsonNet"
urlsArray[arraycount] = "lnwsw_2.htm#S-00400-00200-00100"
descArray[arraycount] = "Config (Macintosh)"
	
arraycount += 1
	
namesArray[arraycount] = "EpsonNet"
urlsArray[arraycount] = "lnwsw_3.htm#S-00400-00300-00100"
descArray[arraycount] = "Config (Web Browser)"
	
arraycount += 1
	
namesArray[arraycount] = "EpsonNet"
urlsArray[arraycount] = "lnwsw_1.htm#S-00400-00100-00100"
descArray[arraycount] = "Config (Windows)"
	
arraycount += 1
	
namesArray[arraycount] = ""
urlsArray[arraycount] = "lnwsw_3.htm#S-00400-00300-00200"
descArray[arraycount] = "IP address"
	
arraycount += 1
	
namesArray[arraycount] = ""
urlsArray[arraycount] = "ltips_1.htm#S-00600-00200"
descArray[arraycount] = "IP address"
	
arraycount += 1
	
namesArray[arraycount] = ""
urlsArray[arraycount] = "lnwsw_3.htm#S-00400-00300-00600-00100"
descArray[arraycount] = "MAC address"
	
arraycount += 1
	
namesArray[arraycount] = ""
urlsArray[arraycount] = "lnwsw_3.htm#S-00400-00300-00700-00400"
descArray[arraycount] = "Microsoft network"
	
arraycount += 1
	
namesArray[arraycount] = ""
urlsArray[arraycount] = "ltrbl_3.htm#S-00500-00300"
descArray[arraycount] = "Network status sheet"
	
arraycount += 1
	
namesArray[arraycount] = ""
urlsArray[arraycount] = "lintr_3.htm#S-00200-00400"
descArray[arraycount] = "Operating environment"
	
arraycount += 1
	
namesArray[arraycount] = "Password for"
urlsArray[arraycount] = "lnwsw_3.htm#S-00400-00300-00800-00300"
descArray[arraycount] = "EpsonNet Config (Web Browser)"
	
arraycount += 1
	
namesArray[arraycount] = ""
urlsArray[arraycount] = "ltips_2.htm#S-00600-00300-00100"
descArray[arraycount] = "Ping"
	
arraycount += 1
	
namesArray[arraycount] = ""
urlsArray[arraycount] = "lintr_3.htm#S-00200-00400"
descArray[arraycount] = "Protocols"
	
arraycount += 1
	
namesArray[arraycount] = ""
urlsArray[arraycount] = "lnwsw_3.htm#S-00400-00300-00300-00200"
descArray[arraycount] = "Reset"
	
arraycount += 1
	
namesArray[arraycount] = ""
urlsArray[arraycount] = "lnwsw_3.htm#S-00400-00300-00800-00200"
descArray[arraycount] = "Reset"
	
arraycount += 1
	
namesArray[arraycount] = ""
urlsArray[arraycount] = "lnwsw_3.htm#S-00400-00300-00800-00200"
descArray[arraycount] = "Return to default button"
	
arraycount += 1
	
namesArray[arraycount] = ""
urlsArray[arraycount] = "lintr_5.htm#S-00200-00600-00200"
descArray[arraycount] = "RJ-45 connector"
	
arraycount += 1
	
namesArray[arraycount] = ""
urlsArray[arraycount] = "lnwsw_3.htm#S-00400-00300-00200"
descArray[arraycount] = "Router"
	
arraycount += 1
	
namesArray[arraycount] = ""
urlsArray[arraycount] = "lnwsw_3.htm#S-00400-00300-00200"
descArray[arraycount] = "Setting the IP address"
	
arraycount += 1
	
namesArray[arraycount] = ""
urlsArray[arraycount] = "ltips_1.htm#S-00600-00200"
descArray[arraycount] = "Setting the IP address"
	
arraycount += 1
	
namesArray[arraycount] = ""
urlsArray[arraycount] = "lnwsw_3.htm#S-00400-00300-00200"
descArray[arraycount] = "Subnet mask"
	
arraycount += 1
	
namesArray[arraycount] = ""
urlsArray[arraycount] = "lnwsw_3.htm#S-00400-00300-00200"
descArray[arraycount] = "TCP/IP"
	
arraycount += 1
	
namesArray[arraycount] = ""
urlsArray[arraycount] = "lnwsw_3.htm#S-00400-00300-00200"
descArray[arraycount] = "Universal Plug and Play"
	
arraycount += 1
	
namesArray[arraycount] = "Using the printer with"
urlsArray[arraycount] = "lhowt_5.htm#S-00300-00500-00700"
descArray[arraycount] = "Macintosh"
	

linksize = arraycount;



// ----end data -------

// final stuff
// the main program ---

jsi = new makeLinks(linksize);
document.write("<title>Search</title><body bgcolor=white>");

	