# Clearing xml search result in movie clip

**URL:** https://forum.kirupa.com/t/clearing-xml-search-result-in-movie-clip/184585
**Category:** Uncategorized
**Created:** [April 6, 2006, 2:13am UTC](https://forum.kirupa.com/t/clearing-xml-search-result-in-movie-clip/184585 "2006-04-06T02:13:56Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![vkiv](https://avatars.discourse-cdn.com/v4/letter/v/f475e1/32.png) [@vkiv](https://forum.kirupa.com/u/vkiv)
#### Post date: [April 6, 2006, 2:13am UTC](https://forum.kirupa.com/t/clearing-xml-search-result-in-movie-clip/184585/1 "2006-04-06T02:13:56Z")

</div>

[COLOR=#0000ff]I am having a problem with my search result…when i do a new seacrh reading from the xml file it still display the old search results which had 4 search results. when i do a new search that come with 3 search results. it still show the 4th result at the end with the 3 result. Is their a way to clear the movieclip then load the new search result… I have attached the zip file with the fla and xml file…[/COLOR]  
[http://www.dragonfly-ent.com/namsearchxml.zip](http://www.dragonfly-ent.com/namsearchxml.zip)

[COLOR=#0000ff]example 4 result returned [/COLOR]  
[COLOR=#0000ff]1[/COLOR]  
[COLOR=#0000ff]2[/COLOR]  
[COLOR=#0000ff]3[/COLOR]  
[COLOR=#0000ff]4[/COLOR]

[COLOR=#0000ff]new search 3 result returned[/COLOR]  
[COLOR=#0000ff]1[/COLOR]  
[COLOR=#0000ff]2[/COLOR]  
[COLOR=#0000ff]3[/COLOR]

[COLOR=#0000ff]but it show the 4 after the three which look like this[/COLOR]  
[COLOR=#0000ff]1[/COLOR]  
[COLOR=#0000ff]2[/COLOR]  
[COLOR=#0000ff]3[/COLOR]  
[COLOR=red]4[/COLOR]

[COLOR=#ff0000]I need a way to basically clear the frame/movie when i do a new search. the code and xml file is below…help greatly appreciated…[/COLOR]

// DisplayInfo is used when an item is pressed  
// it hides the menu\_mc (and the buttons) and shows the  
// infobox\_mc, assigning the text of the selected button  
// to the textbox within.  
// define basic variables for setting up the menu

String.prototype.contains = function(searchString){  
return (this.indexOf(searchString) != -1);  
}  
Array.prototype.contains = function(searchValue){  
var i = this.length;  
while(i–) if (this\* == searchValue) return true;  
return false;  
}  
ElementsToSearch = function(){  
var childElementsToSearch = [];  
if (search\_fields.title\_check.checked){  
childElementsToSearch.push(“prodname”);  
}  
if (search\_fields.author\_check.checked){  
childElementsToSearch.push(“prodnumber”);  
}

return childElementsToSearch;  
}

SearchXML = function(nodes, query, useChildElements){

var results = [];  
for (var i=0; i\<nodes.length; i++){  
for (var j=0; j\<nodes\*.childNodes.length; j++){  
currNode = nodes\*.childNodes[j];  
if (useChildElements.contains(currNode.nodeName)){  
if (currNode.firstChild.nodeValue.toUpperCase().contains(query.toUpperCase())){  
results.push(nodes\*);  
break;  
}  
}  
}  
}  
return results;  
}  
DisplayNodes = function(nodes){

var item\_spacing = 28; // how far menu items are spaced veritcally  
var item\_count = 0; // counts menu items as they are added from the XML  
item\_mc.prodnam\_txt.text = “”;  
item\_mc.prodnum\_txt.text = “”;  
item\_mc.proddesc\_txt.text = “”;  
item\_mc.prodtype\_txt.text = “”;  
item\_mc.prodman\_txt.text = “”;

for (var i=0; i\<nodes.length; i++){  
//menu box  
var prodnam = nodes\*.firstChild; // same as items\*.childNodes[0]  
//var prodnam = nodes\*.childNodes[0];  
var prodnum = nodes\*.childNodes[1]; // second child node  
var proddesc = nodes\*.childNodes[3];  
var prodtype = nodes\*.childNodes[4];  
var prodman = nodes\*.childNodes[5];

//infobox  
var location = nodes\*.firstChild;  
//var location = nodes\*.childNodes[0];  
var prodtitle = nodes\*.childNodes[2];  
var prodmsrp = nodes\*.childNodes[6];  
var prodmap = nodes\*.childNodes[7];  
var prod13 = nodes\*.childNodes[8];  
var prod4 = nodes\*.childNodes[9];  
var prodpromo = nodes\*.childNodes[10];  
var proddisc = nodes\*.childNodes[11];  
var prodcust = nodes\*.childNodes[12];

// Create a menu item movie clip in the menu\_mc instance on the main timeline  
// for each item element offsetting each additional further down the screen  
var item\_mc = menu\_mc.attachMovie(“menu\_item”,“item”+item\_count, item\_count);  
item\_mc.\_y = item\_count \* item\_spacing;  
item\_count++;

// assign text using nodeValue to get the text  
// from the text nodes and CDATA sections

//menu box  
item\_mc.prodnam\_txt.text = prodnam.firstChild.nodeValue;  
item\_mc.prodnum\_txt.text = prodnum.firstChild.nodeValue;  
item\_mc.proddesc\_txt.text = proddesc.firstChild.nodeValue;  
item\_mc.prodtype\_txt.text = prodtype.firstChild.nodeValue;  
item\_mc.prodman\_txt.text = prodman.firstChild.nodeValue;

//info box  
item\_mc.main\_btn.location\_text = location.firstChild.nodeValue;  
item\_mc.main\_btn.prodtitle\_text = prodtitle.firstChild.nodeValue;  
item\_mc.main\_btn.proddesc\_text = proddesc.firstChild.nodeValue;  
item\_mc.main\_btn.prodmsrp\_text = prodmsrp.firstChild.nodeValue;  
item\_mc.main\_btn.prodmap\_text = prodmap.firstChild.nodeValue;  
item\_mc.main\_btn.prodprod13\_text = prod13.firstChild.nodeValue;  
item\_mc.main\_btn.prodprod4\_text = prod4.firstChild.nodeValue;  
item\_mc.main\_btn.prodpromo\_text = prodpromo.firstChild.nodeValue;  
item\_mc.main\_btn.prodproddisc\_text = proddisc.firstChild.nodeValue;  
item\_mc.main\_btn.prodprodcust\_text = prodcust.firstChild.nodeValue;  
item\_mc.main\_btn.prodnam\_text = prodnam.firstChild.nodeValue;  
item\_mc.main\_btn.prodnumb\_text = prodnum.firstChild.nodeValue;

// set the onRelease of the item button to the DisplayInfo function  
item\_mc.main\_btn.onRelease = DisplayInfo;  
}  
}

function DisplayInfo(){  
menu\_mc.\_visible = true;  
infobox\_mc.\_visible = true;  
infobox\_mc.content\_txt.text = this.location\_text;  
infobox\_mc.prodtitle\_txt.text = this.prodtitle\_text;  
infobox\_mc.prodmsrp\_txt.text = this.prodmsrp\_text;  
infobox\_mc.prodmap\_txt.text = this.prodmap\_text;  
infobox\_mc.prod13prc\_txt.text = this.prodprod13\_text;  
infobox\_mc.prod4prc\_txt.text = this.prodprod4\_text;  
infobox\_mc.prodprocom\_txt.text = this.prodpromo\_text;  
infobox\_mc.proddiscom\_txt.text = this.prodproddisc\_text;  
infobox\_mc.prodcustno\_txt.text = this.prodprodcust\_text;  
infobox\_mc.proddesc\_txt.text = this.proddesc\_text;  
infobox\_mc.prodnam\_txt.text = this.prodnam\_text;  
infobox\_mc.prodnumb\_txt.text = this.prodnumb\_text;

}

// close\_btn is in infobox\_mc ands restores  
// the menu (clearing the info text and hiding itself as well)  
infobox\_mc.close\_btn.onRelease = function(){  
menu\_mc.\_visible = true;  
infobox\_mc.\_visible = true;  
infobox\_mc.content\_txt.text = “”;  
}  
infobox\_mc.\_visible = false; // start the info box hidden

// manage XML  
// create new XML object instance, remembering to ignore white space  
var prodnamnum\_xml = new XML();  
prodnamnum\_xml.ignoreWhite = true;  
// define an onLoad to create our location menu when the XML has successfully loaded.  
prodnamnum\_xml.onLoad = function(success){  
if (success)  
{  
search\_fields.\_visible = true;  
//CreateMenu(this) ;  
//will call create menu later…  
}

else trace(“Error loading XML file”); // no success? trace error (wont be seen on web)  
}  
search\_fields.\_visible = false;

// load the xml file!  
prodnamnum\_xml.load(“prodnamnumxmlfile.xml”);  
search\_fields.title\_check.title\_txt.text = “Product Name”;  
search\_fields.author\_check.title\_txt.text = “Product Number”;

search\_fields.search\_btn.onRelease = function(){

if (search\_fields.query\_txt.text.length \< 3){  
var item\_mc = menu\_mc.attachMovie(“menu\_item”,“item”+item\_count, item\_count);  
item\_mc.results\_txt.text = “Please use a search term with 3 or more characters.”;  
return (0);  
}  
var searchElements = ElementsToSearch();  
var nodesWithQuery = SearchXML(  
prodnamnum\_xml.firstChild.childNodes,  
search\_fields.query\_txt.text,  
searchElements  
);

if (nodesWithQuery.length)  
{  
DisplayNodes(nodesWithQuery);  
}  
else  
{  
var item\_mc = menu\_mc.attachMovie(“menu\_item”,“item”+item\_count, item\_count);  
item\_mc.results\_txt.text = “No results for “+search\_fields.query\_txt.text+”.”;  
return (0);  
}

}

[COLOR=#0000ff]\<?xml version=“1.0” ?\>[/COLOR]  
[**[FONT=Courier New][COLOR=#ff0000]-[/COLOR][/FONT]**](file:///C:/Documents%20and%20Settings/timmy/Desktop/flah%20stuff/pci%20development/prodnamnumxmlfile.xml#) [COLOR=#0000ff]\<[/COLOR][COLOR=#990000]productsearch[/COLOR][COLOR=#0000ff]\>[/COLOR]  
[**[FONT=Courier New][COLOR=#ff0000]-[/COLOR][/FONT]**](file:///C:/Documents%20and%20Settings/timmy/Desktop/flah%20stuff/pci%20development/prodnamnumxmlfile.xml#) [COLOR=#0000ff]\<[/COLOR][COLOR=#990000]product[/COLOR][COLOR=#0000ff]\>[/COLOR]  
[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodname[/COLOR][COLOR=#0000ff]\>[/COLOR] **Product1** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodname[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodnumber[/COLOR][COLOR=#0000ff]\>[/COLOR] **1234m** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodnumber[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodtitle[/COLOR][COLOR=#0000ff]\>[/COLOR] **Product Title** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodtitle[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]proddesc[/COLOR][COLOR=#0000ff]\>[/COLOR] **prod desciption** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]proddesc[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodtype[/COLOR][COLOR=#0000ff]\>[/COLOR] **prod type like Mobile video** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodtype[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodmanuf[/COLOR][COLOR=#0000ff]\>[/COLOR] **prod type like JBL** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodmanuf[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodmsrp[/COLOR][COLOR=#0000ff]\>[/COLOR] **$20.99** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodmsrp[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodmapprc[/COLOR][COLOR=#0000ff]\>[/COLOR] **not sure what this field is can you find out** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodmapprc[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prod13prc[/COLOR][COLOR=#0000ff]\>[/COLOR] **$15.99** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prod13prc[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prod4prc[/COLOR][COLOR=#0000ff]\>[/COLOR] **$13.99** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prod4prc[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodprocom[/COLOR][COLOR=#0000ff]\>[/COLOR] **Promotional Comments** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodprocom[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]proddsccom[/COLOR][COLOR=#0000ff]\>[/COLOR] **Disclaimer Comments** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]proddsccom[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodcustno[/COLOR][COLOR=#0000ff]\>[/COLOR] **1-800-dummy-numbner** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodcustno[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodtmbpic[/COLOR][COLOR=#0000ff]\>[/COLOR] **prodtmbpic.jpg** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodtmbpic[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodpic[/COLOR][COLOR=#0000ff]\>[/COLOR] **prodpic.jpg** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodpic[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\</[/COLOR][COLOR=#990000]product[/COLOR][COLOR=#0000ff]\>[/COLOR]

[**[FONT=Courier New][COLOR=#ff0000]-[/COLOR][/FONT]**](file:///C:/Documents%20and%20Settings/timmy/Desktop/flah%20stuff/pci%20development/prodnamnumxmlfile.xml#) [COLOR=#0000ff]\<[/COLOR][COLOR=#990000]product[/COLOR][COLOR=#0000ff]\>[/COLOR]  
[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodname[/COLOR][COLOR=#0000ff]\>[/COLOR] **Product2** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodname[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodnumber[/COLOR][COLOR=#0000ff]\>[/COLOR] **1234m3** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodnumber[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodtitle[/COLOR][COLOR=#0000ff]\>[/COLOR] **Product Title** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodtitle[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]proddesc[/COLOR][COLOR=#0000ff]\>[/COLOR] **prod desciption** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]proddesc[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodtype[/COLOR][COLOR=#0000ff]\>[/COLOR] **prod type like Mobile video** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodtype[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodmanuf[/COLOR][COLOR=#0000ff]\>[/COLOR] **prod type like JBL** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodmanuf[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodmsrp[/COLOR][COLOR=#0000ff]\>[/COLOR] **$20.99** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodmsrp[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodmapprc[/COLOR][COLOR=#0000ff]\>[/COLOR] **not sure what this field is can you find out** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodmapprc[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prod13prc[/COLOR][COLOR=#0000ff]\>[/COLOR] **$15.99** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prod13prc[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prod4prc[/COLOR][COLOR=#0000ff]\>[/COLOR] **$13.99** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prod4prc[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodprocom[/COLOR][COLOR=#0000ff]\>[/COLOR] **Promotional Comments** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodprocom[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]proddsccom[/COLOR][COLOR=#0000ff]\>[/COLOR] **Disclaimer Comments** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]proddsccom[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodcustno[/COLOR][COLOR=#0000ff]\>[/COLOR] **1-800-dummy-numbner** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodcustno[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodtmbpic[/COLOR][COLOR=#0000ff]\>[/COLOR] **prodtmbpic.jpg** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodtmbpic[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodpic[/COLOR][COLOR=#0000ff]\>[/COLOR] **prodpic.jpg** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodpic[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\</[/COLOR][COLOR=#990000]product[/COLOR][COLOR=#0000ff]\>[/COLOR]

[**[FONT=Courier New][COLOR=#ff0000]-[/COLOR][/FONT]**](file:///C:/Documents%20and%20Settings/timmy/Desktop/flah%20stuff/pci%20development/prodnamnumxmlfile.xml#) [COLOR=#0000ff]\<[/COLOR][COLOR=#990000]product[/COLOR][COLOR=#0000ff]\>[/COLOR]  
[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodname[/COLOR][COLOR=#0000ff]\>[/COLOR] **Product3** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodname[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodnumber[/COLOR][COLOR=#0000ff]\>[/COLOR] **1234m34** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodnumber[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodtitle[/COLOR][COLOR=#0000ff]\>[/COLOR] **Product Title** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodtitle[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]proddesc[/COLOR][COLOR=#0000ff]\>[/COLOR] **prod desciption** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]proddesc[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodtype[/COLOR][COLOR=#0000ff]\>[/COLOR] **prod type like Mobile video** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodtype[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodmanuf[/COLOR][COLOR=#0000ff]\>[/COLOR] **prod type like JBL** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodmanuf[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodmsrp[/COLOR][COLOR=#0000ff]\>[/COLOR] **$20.99** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodmsrp[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodmapprc[/COLOR][COLOR=#0000ff]\>[/COLOR] **not sure what this field is can you find out** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodmapprc[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prod13prc[/COLOR][COLOR=#0000ff]\>[/COLOR] **$15.99** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prod13prc[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prod4prc[/COLOR][COLOR=#0000ff]\>[/COLOR] **$13.99** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prod4prc[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodprocom[/COLOR][COLOR=#0000ff]\>[/COLOR] **Promotional Comments** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodprocom[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]proddsccom[/COLOR][COLOR=#0000ff]\>[/COLOR] **Disclaimer Comments** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]proddsccom[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodcustno[/COLOR][COLOR=#0000ff]\>[/COLOR] **1-800-dummy-numbner** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodcustno[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodtmbpic[/COLOR][COLOR=#0000ff]\>[/COLOR] **prodtmbpic.jpg** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodtmbpic[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodpic[/COLOR][COLOR=#0000ff]\>[/COLOR] **prodpic.jpg** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodpic[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\</[/COLOR][COLOR=#990000]product[/COLOR][COLOR=#0000ff]\>[/COLOR]

[**[FONT=Courier New][COLOR=#ff0000]-[/COLOR][/FONT]**](file:///C:/Documents%20and%20Settings/timmy/Desktop/flah%20stuff/pci%20development/prodnamnumxmlfile.xml#) [COLOR=#0000ff]\<[/COLOR][COLOR=#990000]product[/COLOR][COLOR=#0000ff]\>[/COLOR]  
[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodname[/COLOR][COLOR=#0000ff]\>[/COLOR] **Product4** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodname[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodnumber[/COLOR][COLOR=#0000ff]\>[/COLOR] **1234m345** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodnumber[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodtitle[/COLOR][COLOR=#0000ff]\>[/COLOR] **Product Title** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodtitle[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]proddesc[/COLOR][COLOR=#0000ff]\>[/COLOR] **prod desciption** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]proddesc[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodtype[/COLOR][COLOR=#0000ff]\>[/COLOR] **prod type like Mobile video** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodtype[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodmanuf[/COLOR][COLOR=#0000ff]\>[/COLOR] **prod type like JBL** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodmanuf[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodmsrp[/COLOR][COLOR=#0000ff]\>[/COLOR] **$20.99** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodmsrp[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodmapprc[/COLOR][COLOR=#0000ff]\>[/COLOR] **not sure what this field is can you find out** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodmapprc[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prod13prc[/COLOR][COLOR=#0000ff]\>[/COLOR] **$15.99** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prod13prc[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prod4prc[/COLOR][COLOR=#0000ff]\>[/COLOR] **$13.99** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prod4prc[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodprocom[/COLOR][COLOR=#0000ff]\>[/COLOR] **Promotional Comments** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodprocom[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]proddsccom[/COLOR][COLOR=#0000ff]\>[/COLOR] **Disclaimer Comments** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]proddsccom[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodcustno[/COLOR][COLOR=#0000ff]\>[/COLOR] **1-800-dummy-numbner** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodcustno[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodtmbpic[/COLOR][COLOR=#0000ff]\>[/COLOR] **prodtmbpic.jpg** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodtmbpic[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\<[/COLOR][COLOR=#990000]prodpic[/COLOR][COLOR=#0000ff]\>[/COLOR] **prodpic.jpg** [COLOR=#0000ff]\</[/COLOR][COLOR=#990000]prodpic[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\</[/COLOR][COLOR=#990000]product[/COLOR][COLOR=#0000ff]\>[/COLOR]

[COLOR=#0000ff]\</[/COLOR][COLOR=#990000]productsearch[/COLOR][COLOR=#0000ff]\>[/COLOR]
