Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Auto Complete - case sense letter and Number -Cant get number

Status
Not open for further replies.

wrighterb

Programmer
Feb 20, 2007
80
US
I am trying to get this to work for case of letter and for numbers. I can't seem to figure out how to combine both.

Can anyone help?


<%@ taglib uri=" prefix="fmt" %>
<%@ taglib uri=" prefix="c" %>
<%@ taglib uri=" prefix="wcbase" %>
<%@ taglib uri="flow.tld" prefix="flow" %>
<%@ include file="../../include/JSTLEnvironmentSetup.jspf" %>
<%@ page import="javax.servlet.http.Cookie" %>
<%@ include file="../../include/ErrorMessageSetup.jspf" %>
<% System.out.println("Inside MWQuickForm"); %>


<!--- Autocomplete information--->

<!--- Import Static List ---->

<c:import url="partList.dat" var="importTXT"/>

<script language=javascript>

var objectTypes = ['Msxml2.XMLHTTP.5.0','Msxml2.XMLHTTP.4.0',
'MSXML2.XMLHTTP.3.0','MSXML2.XMLHTTP','Microsoft.XMLHTTP'];

var xmlHttp;
if (window.XMLHttpRequest) {
//Browser is non-IE
xmlHttp = new XMLHttpRequest();
}
else {
for (o in objectTypes) {
try {
xmlHttp = new ActiveXObject(objectTypes[o]);
break;
} catch (ex) {//ignore exception
}
}
}

//Start of the Autocomplete

function AutoCompleteDB()
{
// set the initial values.
this.bEnd = false;
this.nCount = 0;
this.aStr = new Object;
}

AutoCompleteDB.prototype.add = function(str)
{
// increment the count value.
this.nCount++;

// if at the end of the string, flag this node as an end point.
if ( str == "" )
this.bEnd = true;
else
{
// otherwise, pull the first letter off the string
var letter = str.substring(0,1);
var rest = str.substring(1,str.length);

// and either create a child node for it or reuse an old one.
if ( !this.aStr[letter] ) this.aStr[letter] = new AutoCompleteDB();
this.aStr[letter].add(rest);
}
}

AutoCompleteDB.prototype.getCount = function(str, bExact)
{
// if end of search string, return number
if ( str == "" )
if ( this.bEnd && bExact && (this.nCount == 1) ) return 0;
else return this.nCount;

// otherwise, pull the first letter off the string
var letter = str.substring(0,1);
var rest = str.substring(1,str.length);

// and look for case-insensitive matches
var nCount = 0;
var lLetter = letter.toLowerCase();
if ( this.aStr[lLetter] )
nCount += this.aStr[lLetter].getCount(rest, bExact && (letter == lLetter));

return nCount;
}

AutoCompleteDB.prototype.getStrings = function(str1, str2, outStr)
{
if ( str1 == "" )
{
// add matching strings to the array
if ( this.bEnd )
outStr.push(str2);

// get strings for each child node
for ( var i in this.aStr )
this.aStr.getStrings(str1, str2 + i, outStr);
}
else
{
// pull the first letter off the string
var letter = str1.substring(0,1);
var rest = str1.substring(1,str1.length);

// and get the case-insensitive matches.
var lLetter = letter.toLowerCase();
if ( this.aStr[lLetter] )
this.aStr[lLetter].getStrings(rest, str2 + lLetter, outStr);
}
}


function AutoComplete(aStr, oText, oDiv, nMaxSize)
{
// initialize member variables
this.oText = oText;
this.oDiv = oDiv;
this.nMaxSize = nMaxSize;

// preprocess the texts for fast access
this.db = new AutoCompleteDB();
var i, n = aStr.length;
for ( i = 0; i < n; i++ )
{
this.db.add(aStr);
}

// attach handlers to the text-box
oText.AutoComplete = this;
oText.onkeyup = AutoComplete.prototype.onTextChange;
oText.onblur = AutoComplete.prototype.onTextBlur;
}

AutoComplete.prototype.onTextBlur = function()
{
this.AutoComplete.onblur();
}

AutoComplete.prototype.onblur = function()
{
this.oDiv.style.visibility = "hidden";
}

AutoComplete.prototype.onTextChange = function()
{
this.AutoComplete.onchange();
}

AutoComplete.prototype.onDivMouseDown = function()
{
this.AutoComplete.oText.value = this.innerHTML;
var url="MWQuickOrderForm.jsp?theText=" + document.QuickOrderForm.theText.value;
xmlHttp.open('get', url, true);
xmlHttp.onreadystatechange = myResponseMethod;
xmlHttp.send(null);
}
function myResponseMethod() {
//readyState 4 means complete
if(xmlHttp.readyState == 4) {
if (xmlHttp.status == 200 || xmlHttp.status === 0) {
var char_id="xmlhttp_id"; //characteristic identifier of the wrapper
if (document.getElementById(char_id)) {
var obj=document.getElementById(char_id);
obj.parentNode.removeChild(obj);
}
var odiv=document.createElement("div")
odiv.id=char_id; //to prepare for removal for repetitive calls
odiv.innerHTML=xmlHttp.responseText;
document.getElementById("theItem").appendChild(odiv);
document.getElementById("theItem").style.visibility = "visible";
document.getElementById("theText").style.display = "none";
document.getElementById("theDiv").style.display = "none";
document.getElementById("theHeader").style.display = "none";

}

}
}
<!---Add Highlight Here --->
AutoComplete.prototype.onDivMouseOver = function()
{
this.className = "AutoCompleteHighlight";
this.className = this.style.backgroundColor='Yellow';
}

AutoComplete.prototype.onDivMouseOut = function()
{
this.className = "AutoCompleteBackground";
this.className = this.style.backgroundColor='White';
}

AutoComplete.prototype.onchange = function()
{
var txt = this.oText.value;

// count the number of strings that match the text-box value
var nCount = this.db.getCount(txt, true);

// if a suitable number then show the popup-div
if ( (this.nMaxSize == -1 ) || ((nCount < this.nMaxSize) && (nCount > 0)) )
{
// clear the popup-div.
while ( this.oDiv.hasChildNodes() )
this.oDiv.removeChild(this.oDiv.firstChild);

// get all the matching strings from the AutoCompleteDB
var aStr = new Array();
this.db.getStrings(txt, "", aStr);

// add each string to the popup-div
var i, n = aStr.length;
for ( i = 0; i < n; i++ )
{
var oDiv = document.createElement('div');
this.oDiv.appendChild(oDiv);
oDiv.innerHTML = aStr;
oDiv.onmousedown = AutoComplete.prototype.onDivMouseDown;
oDiv.onmouseover = AutoComplete.prototype.onDivMouseOver;
oDiv.onmouseout = AutoComplete.prototype.onDivMouseOut;
oDiv.AutoComplete = this;
}
this.oDiv.style.visibility = "visible";
}
else // hide the popup-div
{
this.oDiv.innerHTML = "";
this.oDiv.style.visibility = "hidden";
}
}
function createAutoComplete()
{
var words = new String("<c:eek:ut value="${importTXT}"/>")
var swords = words.split(";")
var aNames = swords ;
new AutoComplete(
aNames,
document.getElementById('theText'),
document.getElementById('theDiv'),
25
);
}
</script>

<body onload="document.getElementById('theText').focus(); createAutoComplete();">

<c:set var="OrderItemUpdateURL" value="OrderItemUpdate" scope="request"/>


<form name="QuickOrderForm" method="post" action="<c:eek:ut value="${OrderItemUpdateURL}" />" id="QuickOrderForm">
<%
String theText = null;
if (request.getParameter("theText") == null) {
%>
<div id="theHeader">
- Start Typing the Product Number -
</div>

<input name="theText" id="theText" type="text" autocomplete="off">

<div id="theDiv" style="width:100px; padding-right:4px;padding-left:4px;visibility:hidden;border:solid green 2px;background-color:white;z-index:1">
</div>
<%
}
%>
<div id="theItem">
<%
if (request.getParameter("theText") != null) {
%>
<c:eek:ut value="${param.theText}" /> <img src=" value="${param.theText}" />_T_1.jpg" border="0" width="54" /><br /><strong>Add Quantity:</strong> <input type="text" name="Quantity" size="3"> <IMG src='/wcss/images/aag/btn/btn_add_cart_focus.gif' border="0" alt="Add to Cart"/>

<%
}
%>
</div>
</form>
 
How about showing your client-side HTML? For us to work with the code on our computers, it's easiest if we have the data that the browser sees. The more difficult it is to figure out what the problem is, the less likely you are to get someone to try to help.

Lee
 
The more difficult it is to figure out what the problem is, the less likely you are to get someone to try to help.

trollacious is so right

[small]"I see pretty girls everywhere I look, everywhere I look, everywhere I look. - Band song on movie "The Ringer"[/small]
<.
 
Sorry

Here is the client side html, I keep trying to add an else if before I check the string, letter, but nothing.

<script language=javascript>

var objectTypes = ['Msxml2.XMLHTTP.5.0','Msxml2.XMLHTTP.4.0',
'MSXML2.XMLHTTP.3.0','MSXML2.XMLHTTP','Microsoft.XMLHTTP'];

var xmlHttp;
if (window.XMLHttpRequest) {
//Browser is non-IE
xmlHttp = new XMLHttpRequest();
}
else {
for (o in objectTypes) {
try {
xmlHttp = new ActiveXObject(objectTypes[o]);
break;
} catch (ex) {//ignore exception
}
}
}

function AutoCompleteDB()
{
// set the initial values.
this.bEnd = false;
this.nCount = 0;
this.aStr = new Object;
}

AutoCompleteDB.prototype.add = function(str)
{
// increment the count value.
this.nCount++;

// if at the end of the string, flag this node as an end point.
if ( str == "" )
this.bEnd = true;
else
{
// otherwise, pull the first letter off the string
var letter = str.substring(0,1);
var rest = str.substring(1,str.length);

// and either create a child node for it or reuse an old one.
if ( !this.aStr[letter] ) this.aStr[letter] = new AutoCompleteDB();
this.aStr[letter].add(rest);
}
}

AutoCompleteDB.prototype.getCount = function(str, bExact)
{
// if end of search string, return number
if ( str == "" )
if ( this.bEnd && bExact && (this.nCount == 1) ) return 0;
else return this.nCount;

// otherwise, pull the first letter off the string
var letter = str.substring(0,1);
var rest = str.substring(1,str.length);

// and look for case-insensitive matches
var nCount = 0;
var lLetter = letter.toLowerCase();
if ( this.aStr[lLetter] )
nCount += this.aStr[lLetter].getCount(rest, bExact && (letter == lLetter));

return nCount;
}

AutoCompleteDB.prototype.getStrings = function(str1, str2, outStr)
{
if ( str1 == "" )
{
// add matching strings to the array
if ( this.bEnd )
outStr.push(str2);

// get strings for each child node
for ( var i in this.aStr )
this.aStr.getStrings(str1, str2 + i, outStr);
}
else
{
// pull the first letter off the string
var letter = str1.substring(0,1);
var rest = str1.substring(1,str1.length);

// and get the case-insensitive matches.
var lLetter = letter.toLowerCase();
if ( this.aStr[lLetter] )
this.aStr[lLetter].getStrings(rest, str2 + lLetter, outStr);
}
}


function AutoComplete(aStr, oText, oDiv, nMaxSize)
{
// initialize member variables
this.oText = oText;
this.oDiv = oDiv;
this.nMaxSize = nMaxSize;

// preprocess the texts for fast access
this.db = new AutoCompleteDB();
var i, n = aStr.length;
for ( i = 0; i < n; i++ )
{
this.db.add(aStr);
}

// attach handlers to the text-box
oText.AutoComplete = this;
oText.onkeyup = AutoComplete.prototype.onTextChange;
oText.onblur = AutoComplete.prototype.onTextBlur;
}

AutoComplete.prototype.onTextBlur = function()
{
this.AutoComplete.onblur();
}

AutoComplete.prototype.onblur = function()
{
this.oDiv.style.visibility = "hidden";
}

AutoComplete.prototype.onTextChange = function()
{
this.AutoComplete.onchange();
}

AutoComplete.prototype.onDivMouseDown = function()
{
this.AutoComplete.oText.value = this.innerHTML;
var url="MWQuickOrderForm.jsp?theText=" + document.QuickOrderForm.theText.value;
xmlHttp.open('get', url, true);
xmlHttp.onreadystatechange = myResponseMethod;
xmlHttp.send(null);
}
function myResponseMethod() {
//readyState 4 means complete
if(xmlHttp.readyState == 4) {
if (xmlHttp.status == 200 || xmlHttp.status === 0) {
var char_id="xmlhttp_id"; //characteristic identifier of the wrapper
if (document.getElementById(char_id)) {
var obj=document.getElementById(char_id);
obj.parentNode.removeChild(obj);
}
var odiv=document.createElement("div")
odiv.id=char_id; //to prepare for removal for repetitive calls
odiv.innerHTML=xmlHttp.responseText;
document.getElementById("theItem").appendChild(odiv);
document.getElementById("theItem").style.visibility = "visible";
document.getElementById("theText").style.display = "none";
document.getElementById("theDiv").style.display = "none";
document.getElementById("theHeader").style.display = "none";

}

}
}
<!---Add Highlight Here --->
AutoComplete.prototype.onDivMouseOver = function()
{
this.className = "AutoCompleteHighlight";
this.className = this.style.backgroundColor='Yellow';
}

AutoComplete.prototype.onDivMouseOut = function()
{
this.className = "AutoCompleteBackground";
this.className = this.style.backgroundColor='White';
}

AutoComplete.prototype.onchange = function()
{
var txt = this.oText.value;

// count the number of strings that match the text-box value
var nCount = this.db.getCount(txt, true);

// if a suitable number then show the popup-div
if ( (this.nMaxSize == -1 ) || ((nCount < this.nMaxSize) && (nCount > 0)) )
{
// clear the popup-div.
while ( this.oDiv.hasChildNodes() )
this.oDiv.removeChild(this.oDiv.firstChild);

// get all the matching strings from the AutoCompleteDB
var aStr = new Array();
this.db.getStrings(txt, "", aStr);

// add each string to the popup-div
var i, n = aStr.length;
for ( i = 0; i < n; i++ )
{
var oDiv = document.createElement('div');
this.oDiv.appendChild(oDiv);
oDiv.innerHTML = aStr;
oDiv.onmousedown = AutoComplete.prototype.onDivMouseDown;
oDiv.onmouseover = AutoComplete.prototype.onDivMouseOver;
oDiv.onmouseout = AutoComplete.prototype.onDivMouseOut;
oDiv.AutoComplete = this;
}
this.oDiv.style.visibility = "visible";
}
else // hide the popup-div
{
this.oDiv.innerHTML = "";
this.oDiv.style.visibility = "hidden";
}
}
function createAutoComplete()
{
var words = new String("06081 20; 06083 20; 06100 10; 06428B10; 06432B10; 06763 20; 06765 20; 19010; 19030; 33072; 33072 20; 33928; 33928 20; 45082 83; 45084 83; 45340 00; 45431; 45431 20; 45522 00; 45654W83; 45658W83; 45660W83; 47807 05; 47808 05; 47809 05; 48134 00; 53038 00; 54168 00; 55046 1006; 55046 1007; 59036; 59036 20; 59040; 59040 20; 59042; 59042 20; 59056; 59056 20; 63464; 63464 20; 68006; 68006 10; 68008; 68008 10; 68010; 68010 10; 68012; 68012 10; 68014; 68014 10; 68016; 68016 10; 68018; 68018 10; 68020; 68020 10; 68028 10; 68030 10; 70005 0506; 70005 0507; AMGM0178; AMGM0278; AMIM0289; AMIM0389; AMIM0489; AMMR0255; AMMR0355; AMNP0479; AMNP0579; AMNP0679; AMNP0779; AMNP0879; AMNP0979; AMNP1079; AMXD0148; AMXD0248; AMXD0348; ARAD0228; ARAD0328; ARAD0428; ARAD0528; ARAD1683; ARAD1783; ARBN2748; ARBN3048; ARBN3148; ARBN3248; ARBN3348; ARDN0228; ARDN0328; ARDN0528; ARDN1648; ARDN1748; ARDN1948; ARFT0228; ARFT0328; ARFT0428; ARFT0528; ARFT1679; ARFT1779; ARFT1879; ARFT1979; ARJN0228; ARJN0428; ARJN0528; ARJN1683; ARJN1783; ARJN2783; ARJN2883; ARJN2983; ARJN3283; ARJN3383; ARJND528; ARNC0428; ARSH0148; ARSL0228; ARSL0328; ARSL0428; ARSL0528; ARSL1679; ARSL1779; ARSL1879; ARSL1979; ARSL2779; ARSL2879; ARSL3379; ARSS0428; ARXD0148; ARXD0248; ARXD0348; ARXD0448; ARXD0548; ARXD0648; ARXD0748; ARXD0848; ARXD0948; ASPC024907; AY12 2807; AY15 1006; AY15 1007; AY2 0006; AY2 0007; AY230 0007; AY2H 0006; AY2H 0007; AY3 2807; AY4 2807; AY41 1006; AY41 1007; AY41H 0006; AY41H 0007; AY44 1006; AY44 1007; AY48 1006; AY48 1007; AY53 1006; AY53 1007; AY846 1006; AY846 1007; AY967 0006; AY967 0007; AYUS141706; AYUS141707; BDIM0189; BDMN012806; BDMN012807; BHCW014906; C 56 05; C FL131006; C FL131007; C FL161006; C FL161007; C WC161006; C WC161007; C WC5905; C YY5614; CBGM5Y78; CBIM0189; CBMN012806; CWAP012806; CWAP012807; CWDA0583; CWIM0189; CWNP1379; CWPC024906; CWXF0148; CWXI0189; DD138P2806; DD289P2806; DD373P2806; DD451B2806; DD479P2806; DD482P2806; DDBP01-2807; DDBP012806; DDBP022806; DDBP032806; DDCE052806; DDCE072806; DDCE082806; DDCE092806; DDCE102806; DDCE112806; DDCT03-2807; DDCT032806; DDCT05-2807; DDCT052806; DDCT10-2807; DDCT102806; DDCT112806; DDCT122806; DDCT14-2807; DDCT16-2807; DDCT162806; DDD102-2807; DDD1022806; DDD1232806; DDD130-2807; DDD1302806; DDD1342806; DDD143-2807; DDD1432806; DDD166-2807; DDD1662806; DDD219-2807; DDD2192806; DDD238-2807; DDD2382806; DDD2402806; DDD2732806; DDD2732807; DDD310-2807; DDD3102806; DDD362-2807; DDD3622806; DDD365-2807; DDD3652806; DDD366-2807; DDD3662806; DDD3692806; DDD371-2807; DDD3712806; DDD372-2807; DDD3722806; DDD373-2807; DDD3732806; DDD374-2807; DDD3762806; DDD3812806; DDD402-2807; DDD4022806; DDD411-2807; DDD4112806; DDD4142806; DDD417-2807; DDD4172806; DDD420-2807; DDD4202806; DDD4212806; DDD4232807; DDD4242806; DDD4252806; DDD42F2806; DDD435-2807; DDD4352806; DDD437-2807; DDD438-2807; DDD4382806; DDD4422806; DDD445-2807; DDD4452806; DDD4462806; DDD4472806; DDD4482806; DDD449-2807; DDD4502806; DDD4512806; DDD4512807; DDD4522806; DDD453-2807; DDD4532806; DDD4542806; DDD455-2807; DDD4552806; DDD456-2807; DDD4562806; DDD4572806; DDD45F2806; DDD4602806; DDD462-2807; DDD4622806; DDD4632806; DDD464-2807; DDD4642806; DDD4672806; DDD46F2806; DDD4702806; DDD4712806; DDD472-2807; DDD4722806; DDD4732806; DDD474-2807; DDD4742806; DDD4752806; DDD5012806; DDD5022806; DDD5022807; DDD5132807; DDD5142807; DDD5152807; DDD5222807; DDD52F2806; DDD53F2806; DDD65F2806; DDD69F2806; DDD72F2806; DDD78M2806; DDD82M2806; DDDE022806; DDDE032806; DDF1022806; DDF1022807; DDF1232807; DDF3732806; DDF3732807; DDF4112806; DDF4112807; DDFO012807; DDFO022807; DDHT422806; DDLC01-2807; DDLC012806; DDLC05-2807; DDLC052806; DDME04-2807; DDME042806; DDME062806; DDMK01-2807; DDMK012806; DDMK10-2807; DDMK102806; DDMK12-2807; DDMK122806; DDMM012807; DDMM022807; DDMM032807; DDMM042807; DDMN02-2807; DDMN022806; DDMN042806; DDMN05-2807; DDMN15-2807; DDMN152806; DDMP03-2807; DDMP032806; DDMP09-2807; DDMP092806; DDMP11-2807; DDMP112806; DDPC012806; DDPC02-2807; DDPC022806; DDPK04-2807; DDPK042806; DDPS04-2807; DDPS042806; DDPS052806; DDSB032807; DDSB042807; DDWE012806; DDWE012807; DDWE032806; DDWE032807; DDWE062806; DDWE062807; DDWE152806; DDWE162806; DDWE162807; DDWE222806; DDWE222807; DDWE242806; DH50201007; DH502510; DH50301007; DH503510; DMA1103206; DMA1103207; DMA2002806; DMA2002807; DMA5032806; DMA5032807; DMAP012806; DMAP012807; DMBJ1483; DMBN0348; DMCB014907; DMCW4A4906; DMD1003206; DMD1003207; DMD1103206; DMD1103207; DMD1203206; DMD1203207; DMD1303206; DMD1353206; DMD1353207; DMD1403206; DMD1403207; DMD1413206; DMD1413207; DMD1423206; DMD1423207; DMD1433206; DMD1443206; DMD1443207; DMD1453206; DMD1453207; DMD1501706; DMD1511406; DMD1521706; DMD1521707; DMD1603206; DMD1620006; DMD1620007; DMD1643206; DMD1643207; DMD1663206; DMD1663207; DMD1683206; DMD1683207; DMEA8B2806; DMEA8B2807; DMEA9B2806; DMEA9B2807; DMIM0189; DMIM0289; DMMR0155; DMW1612806; DMW1632806; DMW1632807; DMW1652806; DMW1652807; DMW1672806; DMW1672807; DMW1692806; DMW1692807; DMW2002806; DMW2002807; DMW2012806; DMW2012807; DMW3002806; DMW3002807; DMW3012806; DMW3012807; DMW3052806; DMW4002806; DMW4002807; DMW4012806; DMW4012807; DMW4022806; DMW5002806; DMW5002807; DMW5012806; DMW5012807; DMW5022806; DMW5032806; DMW5032807; DMW5042806; DMW5042807; DR437M1006; DR438M1006; DR466M1006; DR469C0506; DR470C0006; DR471C0006; DR5BJ20006; DR5BJ50006; DR664M1006; DR694M1006; DR703C0006; DR801405; DR801505; DSBJ0983; DSDA0283; DSIM0189; E 017 5006; E 017 5007; E 10175006; E 10175007; E 17 00; E 17AP5006; E 17AP5007; E 19 00; E 21 00; E 210 5006; E 210 5007; E 403 16; E 405 16; E 417 5006; E 417 5007; E 445 16; E 458 5006; E 458 5007; E 465 16; E 467 16; E 485 16; E 517 5006; E 517 5007; E 58 00; E 712 5006; E 712 5007; E 717 5006; E 717 5007; E 717R5006; E 717R5007; E 717T5006; E 717T5007; E 717W5006; E 917 5006; E 917 5007; E 919 5006; E 919 5007; E DB1C1007; EMGM0278; EMIM0289; G 100 0006; G 100 0007; G 100 1006; G 100 1007; G 10001706; G 10001707; G 100H0006; G 100H0007; G 100J1706; G 10181706; G 10181707; G 155 10; G 200 0006; G 200 0007; G 200 1406; G 202 0006; G 202 0007; G 210 0006; G 210 0007; G 210 1006; G 210 1007; G 210H0006; G 210H0007; G 232 0006; G 232 0007; G 235 0006; G 235 0007; G 235 5306; G 235 5307; G 250 0006; G 250 0007; G 250H0006; G 250H0007; G 262 0006; G 262 5006; G 400 0006; G 400 0007; G 400H0006; G 400H0007; G 440 0006; G 440 0007; G 450 0006; G 450 0007; G 470 0006; G 470 0007; G 470 1006; G 470 1007; G 470 1406; G 470H0006; G 470H0007; G 480 0006; G 480 0007; G 520 0006; G 520 0007; G 520 1006; G 520 1007; G 520 1406; G 520 1407; G 520H0006; G 520H0007; G 535 0006; G 535 0007; G 545 0006; G 545 0007; G 545 1406; G 545 1407; G 545 5006; G 545 5007; G 545 70; G 546 0006; G 546 0007; G 547 0006; G 547 0007; G 547 5006; G 547 5007; G 560 0006; G 560 0007; G 560H0006; G 561 0006; G 561 0007; G 561 5006; G 561 5007; G 570 00; G 590 0006; G 590 0007; G 595 0006; G 595 0007; G 700 1706; G 700 1707; G 701 1406; G 701 1407; G 777 1006; G 777 1007; GG25000006; GG25000007; GG545 5006; GG545 5007; GRBC1C43; H 212 5006; H 212 5007; HSBJ0183; HSBN0148; HSNP0179; HSNP0279; HSNP0379; HTH01S2806; HTH02S2806; HTH101-2807; HTH1012806; HTH102-2807; HTH1022806; HTH1162807; HTH123-2807; HTH1232806; HTH131-2807; HTH1312806; HTH1322806; HTH1322807; HTH16F2807; HTH180-2807; HTH1802806; HTH20F2807; HTH20S2806; HTH220-2807; HTH2202806; HTH221-2807; HTH2212806; HTH231-2807; HTH2312806; HTH248-2807; HTH2482806; HTH257-2807; HTH2572806; HTH270-2807; HTH2702806; HTH2802806; HTH2802807; HTH289-2807; HTH2892806; HTH2942806; HTH2942807; HTH296-2807; HTH2962806; HTH300-2807; HTH3002806; HTH3022806; HTH3062806; HTH3062807; HTH30S2806; HTH313-2807; HTH316-2807; HTH3162806; HTH31F2807; HTH320-2807; HTH3202806; HTH321-2807; HTH3212806; HTH32S2806; HTH330-2807; HTH3302806; HTH3312806; HTH3312807; HTH332-2807; HTH3322806; HTH339-2807; HTH3392806; HTH33B2807; HTH340-2807; HTH3402806; HTH345-2807; HTH3452806; HTH3492806; HTH3492807; HTH34S2806; HTH3512807; HTH3522806; HTH3522807; HTH3542806; HTH3542807; HTH357-2807; HTH3572806; HTH3592806; HTH3592807; HTH35W2807; HTH3602807; HTH362-2807; HTH3622806; HTH3632807; HTH364-2807; HTH3642806; HTH3652806; HTH3652807; HTH3662806; HTH3662807; HTH3672806; HTH3672807; HTH3682807; HTH3692806; HTH3692807; HTH3712807; HTH3722807; HTH3732807; HTH374-2807; HTH3742806; HTH3752807; HTH3762807; HTH3772807; HTH3882807; HTH39S2806; HTH45F2806; HTH57S2806; HTM06F2806; HTM11F2806; HTM51F2806; HTMG032806; HTMG042806; HTMG062806; HTMN02-2807; HTMN022806; HTMN032806; HTMN032807; HTMN05-2807; HTMN052806; HTMN062806; HTMN062807; HTMN07-2807; HTMN072806; HTMN0B2807; HTMN112806; HTMN112807; HTMN122807; HTMN152807; HTMN50-2807; HTMN502806; HTMN51-2807; HTMN512806; HTMN52-2807; HTMN522806; HTMN542806; HTMN542807; HTMN59-2807; HTMN592806; HTMN5B2807; HTMN63-2807; HTMN632806; HTMN64-2807; HTMN642806; HTMN67-2807; HTMN672806; HTMN78-2807; HTMN782806; HTMN83-2807; HTMN832806; HTMN872806; HTMN88-2807; HTMN882806; HTMN89-2807; HTMN892806; HTMN902806; HTMN902807; HTMN942806; HTMN942807; HTMN95-2807; HTMN952806; HTMN96-2807; HTMN962806; HTMN99-2807; HTMN992806; HTWE01-2807; HTWE012806; HTWE02-2807; HTWE022806; HTWE03-2807; HTWE032806; HTWE04-2807; HTWE042806; HTWE05-2807; J 17 00; JBXD0148; JGAP012806; JGCE012806; JJCW044906; JJMN012806; JTCW044906; JTCW044907; K 1 0006; K 1 0007; K 1 5006; K 1 5007; K 4 0006; K 4 0007; K 4 5006; K 4 5007; KNCW044906; KNCW044907; KOXI0189; KOXM0178; KOXP0148; KS100225; KS100325; KS100425; KS100525; KS100625; KS100725; KS100825; KS100925; KS101025; KS101125; KS101225; KS101325; KS101625; KS101725; KS101825; KS101925; KS102025; KS102125; KS102325; KS102410; KS102510; KS102610; KS102710; KS102810; LMB00K0006; LMB10 1006; LMB10-1007; LMB100-0007; LMB1000006; LMB10K1006; LMB116-0007; LMB1160006; LMB131-0007; LMB1310006; LMB141-0007; LMB1410006; LMB151-0007; LMB1510006; LMB1520006; LMB153-0007; LMB1530006; LMB1600006; LMB1640006; LMB1670006; LMB168-0007; LMB1680006; LMB1690006; LMB172-0007; LMB1720006; LMB1730006; LMB1740006; LMB1750006; LMB1760006; LMB1770006; LMB1790006; LMB1800006; LMB1810006; LMB1830006; LMB1840006; LMB1860006; LMB1870006; LMB197-0007; LMB1970006; LMB38 1006; LMB38-0007; LMB43 1006; LMB43-1007; LMB45 1006; LMB45-1007; LMB68F0006; LMB71 0006; LMB73F0006; LMB74F0006; LMB75L0006; LMB76 0006; LMB76L0006; LMB77L0006; LMB80F0006; LMB84F0006; LMB87M0006; LMBB310006; LME04F1006; LME100-1007; LME1001006; LME101-1007; LME1011006; LME1031006; LME1031007; LME10B1007; LME10S1006; LME134-1007; LME1341006; LME137-1007; LME1371006; LME155-1007; LME1551006; LME159-1007; LME1591006; LME161-1007; LME1611006; LME163-1007; LME1631006; LME164-1007; LME1641006; LME168-1007; LME1681006; LME1711006; LME1711007; LME173-1007; LME1731006; LME178-1007; LME1781006; LME200-1007; LME2001006; LME201-1007; LME2011006; LME202-1007; LME2021006; LME204-1007; LME2041006; LME205-1007; LME2051006; LME206-1007; LME2061006; LME209-1007; LME2091006; LME210-1007; LME2101006; LME211-1007; LME2111006; LME2121006; LME2121007; LME2131007; LME214-1007; LME2141006; LME215-1007; LME2151006; LME34S1006; LME59S1006; LME73F1006; LME78S1006; LML09F1006; LML1341006; LML1341007; LML1361006; LML1361007; LML1411006; LML1411007; LML144-1007; LML1441006; LML204-1007; LML2041006; LML209-1007; LML2091006; LML20S1007; LML2181006; LML2181007; LML224-1007; LML2241006; LML232-1007; LML2321006; LML2351006; LML2351007; LML28F1006; LML295-1007; LML2951006; LML34B1007; LML40B1007; LML40F1007; LML41B1007; LML41F1007; LML42S1007; LML44B1007; LML47B1007; LML48F1006; LML51B1007; LML52B1007; LML52F1006; LML573-1007; LML5731006; LML589-1007; LML5891006; LML59 1007; LML594-1007; LML5941006; LML603-1007; LML6031006; LML628-1007; LML6281006; LML6361006; LML6361007; LML640-1007; LML6401006; LML641-1007; LML6411006; LML647-1007; LML6471006; LML6481006; LML6481007; LML6491006; LML6491007; LML64B1007; LML64S1007; LML6501006; LML6501007; LML6511006; LML6511007; LML6521006; LML6521007; LML6531006; LML6531007; LML6541006; LML6541007; LML6551006; LML6551007; LML6561006; LML6561007; LML6571006; LML6571007; LML6581006; LML6581007; LML6601006; LML6601007; LML6611007; LML6621007; LSAP012807; LSCW044907; LTMP012806; LTMP092806; LTMP122806; MEMP012806; MEMP012807; MEMP022806; MMMC1C12; NI24551006; NI24551007; NI24651006; NI24701006; NI24701007; NI410410; NIAD0228; NIAD082806; NID0022806; NID0032806; NID0032807; NID0082806; NID0162806; NID0162807; NID0182806; NID0182807; NID0192806; NID0192807; NIFT0228; NIFT0828; NIFT0928; NIFT1028; NIJN0228; NIJN0828; NIJN0928; NIJN1083; NIJN1183; NIJN1228; NIJN1328; NIJN1428; NIJN1528; NIJN1628; NIJN1728; NIJN1828; NIJN1928; NIL004-1007; NIL0041006; NIMT0128; NISL0228; NISL0828; NISL0928; NISL1028; NOBX040007; NODE022807; NODE032807; NOMP022807; NOMP032807; NOWL032807; NOWL052807; NSXD0148; NSXD0248; NSXI0189; NSXP0148; OPD2CF2806; P FL161006; P FL161007; PM1 2806; PM1 2807; PM10 2806; PM10 2807; PM11 2806; PM11 2807; PM12 2806; PM12 2807; PM12522806; PM12522807; PM12B 2806; PM14 2806; PM14 2807; PM15 2806; PM15 2807; PM170 2806; PM170 2807; PM170J2806; PM2 2806; PM2 2807; PM200 2806; PM200 2807; PM200B2806; PM200B2807; PM210 2806; PM210 2807; PM210B2806; PM210B2807; PM212 2806; PM212 2807; PM21B 2806; PM21SB2806; PM21SB2807; PM22 95; PM220 2806; PM220 2807; PM23 95; PM233 28; PM233B28; PM239 28; PM239B28; PM24 95; PM250 28; PM250B28; PM25F 32; PM26 2806; PM26 2807; PM263B28; PM26B 2806; PM26B 2807; PM27 95; PM273B28; PM275B28; PM28 2806; PM28 2807; PM2P 2806; PM3 2806; PM3 2807; PM300 2806; PM300 2807; PM300P2806; PM300P2807; PM30AP2806; PM30AP2807; PM30H 95; PM310 2806; PM310 2807; PM310P2806; PM310P2807; PM31AP2806; PM31AP2807; PM326 2806; PM326 2807; PM326P2806; PM326P2807; PM330B2806; PM330B2807; PM332A2806; PM332A2807; PM333 28; PM333P28; PM334A1006; PM334A1007; PM3P 2806; PM4 2806; PM4 2807; PM430 2806; PM430 2807; PM44 2806; PM44 2807; PM464B2806; PM464B2807; PM50 2806; PM50 2807; PM500 2806; PM500 2807; PM500B2806; PM500B2807; PM501B2806; PM50SB2806; PM50SB2807; PM51 2806; PM51 2807; PM52 2806; PM52 2807; PM53 2806; PM53 2807; PM530B28; PM54 2806; PM54 2807; PM550B2806; PM550B2807; PM6 2806; PM6 2807; PM600 2806; PM664P2806; PM664P2807; PM88 2806; PM88 2807; PM9 2806; PM9 2807; PM927 2806; PM927 2807; PM99 2806; PM99 2807; PMAC049506; PMBE902806; PMBE902807; PMCC059506; PMCC069506; PMCO162806; PMCO162807; PMCS1 2807; PMCS3B2807; PMCSM42807; PME65 2806; PME65 2807; PME66 2806; PMECO62806; PMECO62807; PMECOB2806; PMECOB2807; PMETKB2806; PMLM022806; PMLM022807; PMLM032806; PMLM032807; PMMR012806; PMMR022806; PMMR032806; PMSC262806; PMSC262807; PMTK202806; PMUS7B2806; PMUS7B2807; PMW8202806; PMW8202807; PMW83B2806; PMW83B2807; PMW85B28; PMW8CL28; PUXD0148; PUXD0248; PUXD1B48; PUXD2B48; QNC15 1006; QNC15 1007; QNC54100; QNC5910506; QNC5910507; QNP54100; QNPR590506; QNPR590507; R 17 00; R 17U 00; RCCW044907; S 170 5006; S 170 5007; S CB1979; S CB2079; S DG044906; S DM0155; S DM0189; S DM0348; S DM0683; S DM4379; S DM4479; S DM4579; S DS0248; S DS0883; S DS0983; S DS1278; S DS2279; S DS2379; S DSX189; S DZ044906; S EM0148; S EM0155; S EM0178; S EM0179; S EM0183; S EM0189; S EM0248; S EM024906; S EM0255; S EM0278; S EM0279; S EM0283; S EM0289; S EM0348; S EM0378; S EM0379; S EM0383; S EM0389; S EM0478; S EM0479; S EM0483; S EM0578; S EM0579; S EM0583; S EM0679; S EM0683; S EM0779; S EM0783; S EM0879; S EM0883; S EM0979; S EM0983; S EM1079; S EM1179; S EM1279; S EM1379; S EMC24906; S EMF12806; S EMF22806; S JT044906; S JT044907; S KF0248; S KF0348; S MD0178; S MD0179; S MD0183; S MD0248; S MD0279; S MD0283; S MD0348; S MD0379; S MD0383; S MD044906; S MDX178; S MDX189; S MT0755; S MT0855; S MT0955; S NS0148; S NS0248; S PU0148; S PU0248; S PU0348; S SJ044906; S SK0148; S SK0248; S TC4879; S TC5179; S TC5279; S TK0189; S TK024906; S TK0289; S TK0389; S TK0489; S TK0855; S TK0883; S TK0955; S TK0983; S TK2228; S TK2983; S TK3083; S TK3183; S TK3283; S TK3383; S TK3483; S TK4178; S TK4278; S TK6048; S TK6779; S TK6879; S TK6979; S TK7079; S TK7179; S TK7279; S TKC149; S TKF078; S TKF178; S TKF278; S TKF378; S TKF778; S TKF978; S TKP12806; S TKP12807; S TKX178; S TKX189; S TKX278; S TKX289; S TKX378; S TKX389; S TKXF78; S TO0648; S TS0148; S WP044906; SD366 1306; SD366 1307; SD370 1306; SD370 1307; SD374 1306; SD374 1307; SD376 1306; SD376 1307; SD377 1306; SD377 1307; SD381 7206; SD381 7207; SD381 7307; SD381 7606; SD385 1306; SD385 1307; SD387 1306; SD387 1307; SD389 1306; SD389 1307; SD880 5006; SD880 5007; SD882 1306; SD882 1307; SD907 1306; SD907 1307; SD910 1306; SD910 1307; SDU38903; SJBJ0283; SJGM0178; SJIM0189; SJNP0379; SK11700006; SK11700007; SK14 0006; SK14 0007; SK15 1006; SK15 1007; SK16 1606; SK16 1607; SK16J 1606; SK2 0006; SK2 0007; SK22 0006; SK22 0007; SK22 5006; SK22 5007; SK225 10; SK24 0006; SK24 0007; SK24160006; SK24160007; SK24510007; SK24520007; SK245A1006; SK245A1007; SK245B0307; SK245B0907; SK245B1006; SK245B1007; SK245B4107; SK245C1007; SK245D1007; SK24B 0006; SK24B 0007; SK24BD0006; SK24BD0007; SK24FM0006; SK24R 0006; SK24R 0007; SK24WB0006; SK25 0306; SK25 0307; SK25 1006; SK25 1007; SK25 1706; SK25 1707; SK25 9206; SK25 9207; SK30 0006; SK30 0007; SK31 0006; SK31 0007; SK31 5006; SK31 5007; SK335 0006; SK345C1007; SK4 0006; SK4 0007; SK41 0006; SK41 0007; SK426 0006; SK426 0007; SK434 0006; SK434 0007; SK44 0006; SK44 0007; SK46 0006; SK46 0007; SK48 0006; SK48 0007; SK48 1006; SK48 1007; SK51 0006; SK51 0007; SK53 0006; SK53 0007; SK53 1006; SK53 1007; SK625 0006; SK625 0007; SK7 0006; SK7 0007; SK700 0006; SK700 0007; SK701 00; SK710 0006; SK710 0007; SK716 0006; SK716 0007; SK726 0006; SK726 0007; SK8 0006; SK8 0007; SK8 5006; SK8FM 0006; SK907 0006; SK907 0007; SKAP012807; SKAP041706; SKAP041707; SKAPA41706; SKAPA41707; SKCO161706; SKCO161707; SKCO361706; SKCO361707; SKCS2 0007; SKFL401706; SKFL401707; SKLH010006; SKLH010007; SKLH015006; SKLH015007; SKMP200006; SKMP200007; SKMP300006; SKMP300007; SKMP400006; SKMP400007; SKOR350006; SKOR350007; SKORA71706; SKORA71707; SKP50 3206; SKP50 3207; SKP52 3206; SKP52 3207; SKP53 3207; SKP54 3207; SKP55 3206; SKP55 3207; SKP56 3206; SKP56 3207; SKPL012807; SKTK213206; SKTK213207; SKUS141706; SKUS141707; SKW8000006; SKW8000007; SKWK520006; SKWK520007; SKWL900006; SKWL900007; ST210B2806; ST210B2807; ST24 0006; ST24 0007; ST26B 2806; ST26B 2807; ST450 10; ST510 2806; ST510 2807; ST520 2806; ST520 2807; ST530 2806; ST530 2807; ST540 2806; ST540 2807; ST550 2806; ST550 2807; ST650 1006; ST650 1007; ST660 1006; ST660 1007; ST680 1006; ST680 1007; ST684 0006; ST730 1006; ST730 1007; ST750 1006; ST750 1007; ST770 1006; ST770 1007; ST780 1006; ST780 1007; ST870 1006; ST870 1007; ST875 1006; ST875 1007; ST880 1006; ST880 1007; ST930 1006; ST930 1007; ST970 1006; ST970 1007; ST980 1006; ST980 1007; STARJ183; STARJ283; STARJ383; STARJ483; STARJ583; STJ35000; STJ38000; STJN0383; STJN0783; STJN0883; STJN0983; STK1 0006; STK1 0007; SW115 2806; SW115 2807; SW200 0006; SW200 0007; SW201 0006; SW201 0007; SW203 1006; SW203 1007; SW203 1706; SW210 0007; SW210 0506; SW230 0006; SW230 0007; SW57175006; SW700X0006; SW700X0007; SW705X5006; SW705X5007; SW706 00; SW706 5006; SW706 5007; SW706X0006; SW706X0007; SZCW044906; TK18 83; TK19 83; TKAP012806; TKAP012807; TKB22C83; TKB24C48; TKB26C48; TKBJ0Y83; TKBJ2783; TKBJ2C83; TKBJ3C83; TKBJ6C83; TKBJC283; TKBK6C55; TKBM2C48; TKBN0548; TKBN0648; TKBN0748; TKBN0848; TKBN0948; TKBN1048; TKBN1C48; TKBN4C48; TKCB014906; TKCB014907; TKCFC177; TKCW054906; TKCW054907; TKCW4A4906; TKCW4C4906; TKCW5C4906; TKDA0783; TKDA1Y83; TKDA2C83; TKDA5C83; TKDA5Y83; TKDA6A8306; TKDA6C83; TKDAC283; TKDAC683; TKG28C78; TKG34C78; TKGM1Y78; TKGM2C78; TKGM3C78; TKGM7C78; TKIM0189; TKIM0289; TKIM1A89; TKIM1C89; TKJN0183; TKJN0283; TKMN012806; TKMN012807; TKMP012806; TKMP012807; TKMP1L2806; TKMR0155; TKMR0255; TKMT1C55; TKMT4C55; TKN43C79; TKN59C79; TKNB0Y55; TKNB1055; TKNB4A55; TKNB4Y55; TKNB9A55; TKNB9L55; TKNP3Y79; TKNP4C79; TKNP5C79; TKNP6479; TKNP6579; TKNP6C79; TKNP6Y79; TKNP9Y79; TKNPC379; TKNPC479; TKNPC679; TKPC024906; TKPC034907; TKPC2C4906; TKPC2U4906; TKPCC24906; TKX14C48; TKXI0189; TKXM0178; TL00401006; TL00401007; TL040M1006; TL045M1006; TL050M1006; TL06 1006; TL06 1007; TL06M 1006; TL119M1006; TL119M1007; TL125M1006; TL130M1006; TL20351006; TL20351007; TL20401006; TL20401007; TL20451006; TL20451007; TL204C1006; TL20501006; TL20501007; TL205C1006; TL207010; TL207510; TL21191006; TL21191007; TL21251006; TL21251007; TL21301006; TL21301007; TL24 0006; TL24 1707; TL24101006; TL24101007; TL24151006; TL24151007; TL241M1006; TL24301006; TL24301007; TL243M1006; TL24401006; TL24401007; TL244M1006; TL24501006; TL24501007; TL245M1006; TL24651006; TL24701006; TL24701007; TL25211006; TL25211007; TL260 1006; TL260 1007; TL315510; TL400010; TL410010; TL415M1006; TL420010; TL500 9606; TL500 9607; TL61409606; TL61409607; TL65 1006; TL65 1007; TL700 1006; TL710010; TL71851006; TL71851007; TL720010; TL731 10; TL741 10; TL751 10; TL761 10; TL761T10; TL771 10; TL781 10; TL791210; TL800 1006; TL800 1007; TL800T1007; TL802010; TL802410; TL80BJ1006; TL810 1006; TL810 1007; TL813 0006; TL813 0007; TL815 1006; TL815 1007; TL81851006; TL81851007; TL81901006; TL81901007; TL81951006; TL81951007; TL819T1007; TL880 1006; TL880 1007; TL902410; TLC45C10; TLCC201006; TLCC2510; TLCC4510; TLCR0110; TLCR0210; TLD05M1006; TLD05M1007; TLD2051006; TLD2051007; TLD3651006; TLD3651007; TLD46M1006; TLD46M1007; TLD5461006; TLD5461007; TLD5551006; TLD5551007; TLD55C1006; TLD65M1006; TLD65M1007; TLE2J11007; TLE2J21007; TLFA1010; TLFA4010; TLFA601006; TLFA601007; TLGM101006; TLGM101007; TLGM1M1006; TLGM2010; TLIS041006; TLIS051006; TLLG0110; TLLG0210; TLLG1510; TLLG4510; TLMA011006; TLMA021006; TLMM021006; TLMM021007; TLMM031006; TLMM031007; TLMM0410; TLMM121007; TLMM131007; TLMM1410; TLMM2M1006; TLMM3M1006; TLNBD11006; TLNBD21006; TLNK011006; TLNK011007; TLNK021006; TLNK021007; TLP1011006; TLP1011007; TLP1021006; TLP1021007; TLPBD11006; TLPBD21006; TLPH1010; TLPH2110; TLPH2210; TLPJ1010; TLPJ2010; TLVA0M1006; TLVA101006; TLVA101007; TLVA1B1006; TLVA1B5906; TLVA201006; TLVA201007; TLVA251006; TLVA2B2306; TLVA2C1006; TLVA2M1006; TLVA301006; TLVA301007; TLVA351006; TLVA351007; TLVA3M1006; TLVA401006; TLVA4B1706; TLVT1010; TLVU1010; TLVU2010; TSXD0348; TSXM0178; W AD0183; W AD0283; W AD0383; W BD054906; W BD054907; W BJ0183; W BJ0283; W BJ0383; W BJ044906; W BJ044907; W BJ0483; W BJ0583; W BJ4F4906; W BJP14907; W BN0148; W BN0248; W BN0348; W BN0448; W BN0548; W C1CL77; W C3CL77; W CCP14906; W CCP14907; W CWN148; W DH014906; W DM054907; W DM154906; W DM154907; W DM164906; W DM164907; W DM174907; W DM6F4906; W DN4F4906; W DNN148; W DP044907; W DS014906; W DS024907; W DS054906; W DS054907; W DS354907; W DS5F4906; W DSC14906; W DSN148; W DSP14906; W DSP14907; W DSP54906; W EA014906; W EMP14906; W EMP14907; W EMP24906; W EMP24907; W EMPC4906; W FB044907; W GA014906; W GJ044907; W IM0189; W IM0289; W IM0389; W IM0489; W IM0589; W JG054907; W JG354907; W JGP14906; W JGP14907; W JN0183; W JN0283; W JN0383; W JN0483; W JN0583; W JN0683; W JN0783; W JN0883; W JN0983; W JWN148; W KP4C49; W LHN148; W MEP54906; W MI0144; W MI0244; W MI0279; W MI0344; W MN0179; W MN0279; W MN0379; W MN0579; W MT0155; W MT0255; W MT0355; W NS044907; W RC0148; W RC0248; W RC0348; W SA0183; W SA0283; W SA0383; W SB014907; W SB024907; W SB034907; W SB044907; W TK054907; W TK354907; W TK364907; W TK374907; W TKP14906; W TKP14907; W WA354907; W WAN148; W WN024906; W WY014906; W WY014907; W WY1F4906; W XD0148; W XD0248; W XD0548; W XD0648; W XD0948; W XD1148; W XF0148; W XF0248; W XI0289; W XI0589; W XI0689; W XI0789; W XN0179; W XN0279; W XN0479; W XN0579; WKBJ8Y83; WKDA1Y83; WKGM1Y78; WKGM2Y78; WKGM3Y78; WKIM0189; WKMC1Y12; WKMR0155; WKNP0Y79; WKNP5Y79; WKPC024906; WKPC034907; WPC13 1006; WPC16 1006; WPC20 10; WPC69120; WPCW044906; WPP20 10; WPP69120; ZLCE042807")
var swords = words.split(";")
var aNames = swords ;
new AutoComplete(
aNames,
document.getElementById('theText'),
document.getElementById('theDiv'),
25
);
}
</script>

<body onload="document.getElementById('theText').focus(); createAutoComplete();">




<form name="QuickOrderForm" method="post" action="OrderItemUpdate" id="QuickOrderForm">

<div id="theHeader">
- Start Typing the Product Number -
</div>

<input name="theText" id="theText" type="text" autocomplete="off">

<div id="theDiv" style="width:100px; padding-right:4px;padding-left:4px;visibility:hidden;border:solid green 2px;background-color:white;z-index:1">
</div>

<div id="theItem">

</div>
</form>
 
...

[small]"I see pretty girls everywhere I look, everywhere I look, everywhere I look. - Band song on movie "The Ringer"[/small]
<.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top