//auto generates by the storecreator and templates
var storeName='R & B Denson & Assoc.';
var mainPage='intro.html';
var totalItems=24;
var ir = new Array(totalItems);
var mAlignStr='
';
A(0, '10', 'Bells', 19.95, 'GlasswareEngravingButterflyCrossDolphinFlower BasketGrapesHorse HeadHummingbirdLighthouseLilly of the ValleyLovebirdsMusic NotePraying HandsRoseSpider & WebThistle');
A(1, '9', 'Bud Vase', 14.95, 'GlasswareEngravingButterflyCrossDolphinFlower BasketGrapesHorse HeadHummingbirdLighthouseLilly of the ValleyLovebirdsMusic NoteOwlPraying HandsRoseSpider & WebThistle');
A(2, '24', 'Carder Steuben Earings', 40.00, 'Jewelry');
A(3, '21', 'Carder Steuben Pendants', 25.00, 'JewelryColorsAmethystBlackBlue & Gold AureneBlue & Gold CalciteCobalt BlueGreen JadeSolid GreenSolid RedShapeHeartOvalTeardrop');
A(4, '2', 'Clocks', 65.00, 'Fine GiftsEngravingDeer SceneDragonFlowersGrapesHummingbirdLighthouse');
A(5, '5', 'Crystal Glass Candlesticks ( Pair)', 24.95, 'Glassware');
A(6, '3', 'Crystal Iceburgs', 26.95, 'Fine GiftsEngravingButterflyCrossDolphinFlower BasketGrapesHorse HeadHummingbirdLighthouseLilly of the ValleyLovebirdsMusic NoteOwlPraying HandsRoseSpider & WebThistle');
A(7, '22', 'Crystal Teardrop Earrings', 40.00, 'Jewelry');
A(8, '20', 'Crystal Teardrop Pendants', 25.00, 'JewelryShapeHeartOddOvalSquareTeardrop');
A(9, '8', 'Crystal Vase - large', 34.95, 'GlasswareEngravingButterflyCrossDolphinFlower BasketGrapesHorse HeadHummingbirdLighthouseLilly of the ValleyLovebirdsMusic NoteOwlPraying HandsRoseSpider & WebThistle');
A(10, '6', 'Crystal Vase - small', 24.95, 'GlasswareEngravingButterflyCrossDolphinFlower BasketGrapesHorse HeadHummingbirdLighthouseLilly of the ValleyLovebirdsMusic NoteOwlPraying HandsRoseSpider & WebThistle');
A(11, '23', 'Custom Logo Pendant', 18.00, 'Jewelry');
A(12, '14', 'Cut Gem Heart - large', 22.00, 'JewelryEngravingButterflyCrossDolphinFlower BasketGrapesHorse HeadHummingbirdLighthouseLilly of the ValleyLovebirdsMusic NoteOwlPraying HandsRoseSpider & WebThistle');
A(13, '11', 'Glass Thimbles', 10.00, 'Fine Gifts');
A(14, '17', 'Heart Jewelry Box', 19.95, 'GlasswareEngravingButterflyCrossDolphinFlower BasketGrapesHorse HeadHummingbirdLighthouseLilly of the VallleyLovebirdsMusic NoteOwlPraing HandsRoseSpider & WebThistle');
A(15, '0', 'Icicles', 1.25, 'Blown Glass');
A(16, '7', 'Icicles - 50 or more', 1.00, 'Blown Glass');
A(17, '15', 'Monograms', 10.00, 'JewelryInitialABCDEFGHIJKLMNOPQRSTUVWXYZ');
A(18, '13', 'Oval Necklace - medium', 15.95, 'JewelryEngravingButterflyCrossDolphinFlower BasketGrapesHorse HeadHummingbirdLighthouseLilly of the ValleyLovebirdsMusic NotesOwlPraying HandsRoseSpider & webThistle');
A(19, '16', 'Paperweight - heart', 26.95, 'Fine GiftsEngravingButterflyCrossDolphinFlower BasketGrapesHorse HeadHummingbirdLighthouseLilly Of the ValleyLovebirdsMusical NoteOwlPraying HandsRoseSpider& WebThistle');
A(20, '4', 'Roses', 20.00, 'Blown GlassColorBlackBlueClearGoldPinkPurpleRedYellow');
A(21, '19', 'Sports Pendant', 18.00, 'JewelrySportBaseballBasketballFootballGolfHockeyLa CrossOtherSoccerTennisTrack');
A(22, '18', 'Square Jewelry Box', 19.95, 'GlasswareEngravingButterflyCrossDolphinFlower BasketGrapesHorse HeadHummingbirdLighthouseLilly of the ValleyLovebirdsMusic NoteOwlPraying HandsRoseSpider & WebThistle');
A(23, '12', 'Window Hangers', 20.00, 'Fine GiftsEngravingButterflyCrossDolphinFlower BasketGrapesHorse HeadHummingbirdLighthouseLilly of the ValleyLovebirdsMusic NoteOwlPraying HandsRoseSpider & WebThistleShapeOctagonRound');
function A(i, id, s, p, c)
{
ir[i] = new RECORD();
ir[i].itemID = id;
ir[i].catalog=c;
ir[i].itemName = s;
ir[i].price = p;
}
function MakeArray(n) {
this.length = n;
for(var i = 0; i < n; i++){
this[i] = 0;
}
return this;
}
function Currency(money)
{
money = parseFloat(money);
money += 0.005;
money += "";
var monLen = money.length;
var digPos = money.indexOf(".");
if(digPos == -1) {
if (money <=0) {
money ="0.00";
} else {
money += ".00";
}
return money;
} else {
if (digPos + 3 > monLen) {
money += "0";
} else if (digPos + 3 != monLen) {
money = money.substring(0, digPos+3);
}
return money;
}
}
function RECORD()
{
this.itemID = 0;
this.itemName="";
this.price=0;
this.match=0;
this.catalog="";
return this;
}
function CompareMatch(a, b) {
return a.match < b.match;
}
function Search()
{
Search_Start(parent.frames["cart"].document.forms[0]);
}
function NewSearch(theForm)
{
Search_Start(theForm);
}
function Search_Start(theForm)
{
var searchStr = theForm.keywords.value;
searchStr=searchStr.toLowerCase();
var space = " ";
var searchWords = searchStr.split(space);
searchWords.sort();
var searchStart =0;
for (var i=0; i < searchWords.length; i++) {
if (searchWords[i].length == 0) {
searchStart++;
} else {
break;
}
}
var totalSearchWord = searchWords.length - searchStart;
if (totalSearchWord <= 0) {
return;
}
var totalFound=0;
var j;
for (j=0;j=0) totalMatch++;
else
if (c.search(searchWords[i])>=0) totalMatch++;
else
if (sid.search(searchWords[i])>=0) totalMatch++;
}
if (totalMatch>0) totalFound++;
ir[j].match=totalMatch;
}
ir.sort(CompareMatch);
var cWin=parent.frames["shop"].document;
cWin.open();
cWin.write(" Zilron StoreCreator v3.0 Shopping Cart Viewer");
cWin.write("");
cWin.write(" "+mAlignStr+"
");
cWin.write("
"+parent.storeName+"
");
cWin.write("
Contact Address:
"+parent.storeContactAddress+"
");
cWin.write("
Search results are as shown in the following table:["+totalFound+"]