
if (top.frames.length > 0) {
   top.location = self.location;
}

<!-- 

//Javascript code common to all Detail pages, and cart.html (for oh)

//=================================================================
function pl(num) {
    return (num > 1) ? "s":"";
}
//=================================================================
// add2cart - adds an item to the shopping cart
function add2cart(newItem, quan) {

 if (!newItem) {
    alert("Please choose a size!");
    return;
 }
 
 if (quan.search(/[\D]/) != -1 || quan < 1) {
     alert("Invalid quantity entered.");
     return;
}
 if (quan > 10) {
     alert("Please email us at service@missingbite.com for purchases of quantities over 10 to insure we have the items in stock.");
     return;
}

	rc = getcookie("TMBcart");
 if (rc.indexOf(newItem.desc) == -1) {    //This is a new item in the cart
      if (quan > newItem.inv) {                //More than we have, offer what's in stock
         if (newItem.inv == 0) {
        	alert("This item is currently out of stock. We should have more in soon.");
       		return;
         }
         if (confirm("The quantity of this item is limited.\n \nWould you like to add "+newItem.inv+" "+newItem.desc+pl(newItem.inv)+" to your shopping cart?"))  {
              rc += "["+newItem.desc+"|"+newItem.price+"|"+newItem.inv+"]";  
         } else return;
         } else {                                        //We have plenty in stock
           if (confirm('Add '+quan+' '+newItem.desc+pl(quan)+' to your Shopping Cart?'))
                  rc += "["+newItem.desc+"|"+newItem.price+"|"+quan+"]";  else return;
       }

 }  else {                                //Consolidating with item already in cart
     ndx = rc.indexOf(newItem.desc)+newItem.desc.length+1;        //find the end of itemdesc in the cookie
     ndx = rc.indexOf("\|",ndx)+1;                                               //find begin of quantity
     len = rc.indexOf("\]",ndx)-ndx;                                            //find the length of quantity
     oldquan = rc.substr(ndx,len);                   
     newquan = eval(oldquan+"+"+quan);                                                    //calc new quantity
     beginRC = rc.substring(0,ndx);       //stick the new quan in oldquan's place
     endRC = rc.substring(ndx+len);
   
     if (newquan > 10) {
        alert("Please email us at service@missingbite.com for purchases of quantities over 10 to insure we have the items in stock.");
        return;
     }

     if (newquan <= newItem.inv) {         //Plenty in stock
          if (confirm('Add '+quan+' more '+newItem.desc+pl(quan)+' to your Shopping Cart?'))
                  rc = beginRC+newquan+endRC; else return;
     } else {
           if (oldquan == newItem.inv) {  //Already put remaining inv in cart previously
               alert ("You have already put the remaining stock of this item in your cart.");
               return;
           } else {                                   // We don't have that many left, do you want what's left?
                left = (newItem.inv-oldquan);
                if (confirm("The quantity of this item is limited.\n \nWould you like to add "+left+" more "+ newItem.desc+ pl(left)+ " to your shopping cart?"))   rc = beginRC+newItem.inv+endRC; else return;
              }    
          }
    }  // end consolidating

   setcookie(rc);
 } 
//=================================================================
function footer(foottype,flag) {
document.writeln('<CENTER>');

if (foottype == 1) {
   document.write('<P>$<SCRIPT>document.write(oh[inum].price);</SCRIPT></P>');
   document.write('<FORM NAME="form">');
}
document.writeln('<P><TABLE BORDER=0><TR ALIGN=CENTER><TD>Quantity:   <INPUT TYPE="text" NAME="quant" VALUE="1" SIZE=3 MAXLENGTH=2></TD><TD>');
document.write('<A HREF="JavaScript: ');

if (foottype == 1) document.writeln('add2cart(oh[inum], document.form.quant.value)">');
else document.writeln('add2cart(oh[document.form.opt.options[document.form.opt.selectedIndex].value], document.form.quant.value)">');

document.write(' <IMG SRC=../std/add.gif border=0></A></TD></TR></TABLE></P></FORM>');
document.write('</TD></TR><TR><TD COLSPAN=2>');
if (flag == '2' || flag == '3') document.write('<CENTER><SPAN class=tiny>Photo courtesy of redlightrunner.com');
footnote();
document.write('</TD></TR></TABLE></TD></TR></TABLE></BODY></HTML>');
}

//=================================================================
function Item(desc, price, inv, pict, details, flag) {
    this.desc = desc;
    this.price = price;
    this.inv = inv;
    this.pict = pict;
    this.details = details;
    this.flag = flag;
}
var oh = new Array();
oh[1] = new Item("iMac Yum Poster","69.95",10,'yumposter.jpg','A collector\'s item for years to come.<BR>One of Apple\'s classic images.<P>January 1999 marked the introduction<BR>of <B><font color=red>c</FONT><font color=green>o</FONT><font color=purple>l</FONT><font color=orange>o</FONT><font color=blue>r</FONT></B> to the world of personal computers<BR>and consumer electronics.</P><P>Size: 22" X 28"</P>','1');
oh[3] = new Item("iMac Retro Poster","39.95",4,'retro.jpg','Side views of the Flower Power<BR>and Blue Dalmation iMacs.<P>This very rare poster has no text and was only<BR>given out at the 2001 Tokyo MacWorld.</P><P>Size: 24" x 24"</P>','1');
oh[4] = new Item("iMac G5 Poster","29.95",9,'iMac-G5.jpg','From the creators of iPod.<P>The New iMac G5</P><P>Size: 22" x 28"</P>','1');
oh[6] = new Item("Nano Front Poster 22X28","39.95",2,'Nano-Front-22X28.jpg','Front view of the original iPod Nano.<P>1000 Songs. Impossibly small. iPod Nano</P><P>Size: 22" x 28"</P>');
oh[7] = new Item("Nano Front Poster 18X24","29.95",5,'Nano-Front-18X24.jpg','Front view of the original iPod Nano.<P>1000 Songs. Impossibly small. iPod Nano</P><P>Size: 18" x 24"</P>');
oh[8] = new Item("Nano w/Hand Poster","39.95",2,'Nano-34-Hand.jpg','3/4 view of the original iPod Nano.<P>1000 Songs. Impossibly small. iPod Nano</P><P>Size: 22" x 28"</P>');
oh[9] = new Item("Nano 1/4 NS Poster","19.95",5,'Nano-14-NS.jpg','1/4 view of the original iPod Nano.<P>1000 Songs. Impossibly small. iPod Nano</P><P>Size: 18" x 24"</P>');
oh[10] = new Item("Nano 3/4 NS Poster","19.95",5,'Nano-34-NS.jpg','3/4 view of the original iPod Nano.<P>1000 Songs. Impossibly small. iPod Nano</P><P>Size: 18" x 24"</P>');
oh[11] = new Item("Nano Side Poster","19.95",5,'Nano-Side.jpg','Side view of the original iPod Nano.<P>1000 Songs. Impossibly small. iPod Nano</P><P>Size: 18" x 24"</P>');
oh[12] = new Item("Nano Black & White Poster","39.95",2,'Nano-BW.jpg','Meet the newest family member.<P>The 1GB iPod Nano</P><P>Size: 22" x 28"</P>');
oh[13] = new Item("MacBook Pro Poster","49.95",5,'MBP.jpg','Presenting MacBook Pro<P>4X faster. (Wishes do come true.)</P><P>Size: 22" x 28"</P>');
oh[15] = new Item("Orange iBook Folded Poster","6.95",10,'iBookorangefolded.gif','This folded poster shows the inside of the original iBook on one side and the outside on the other.</P><P>Size Open: 10.5" X 16"</P>','1');
oh[16] = new Item("Blue iBook Folded Poster","6.95",10,'iBookbluefolded.gif','This folded poster shows the inside of the original iBook on one side and the outside on the other.</P><P>Size Open: 10.5" X 16"</P>','1');
oh[17] = new Item("Macintosh 1984-2004 Poster","49.95",10,'2004poster.jpg','<P>In 1984 Apple released what has now become the most<BR>famous television commercial ever made, \"1984\".</P><P>Now in 2004, Apple has created this commemorative poster celebrating the 20th anniversary of the Apple Macintosh.</P><P>This poster is sure to become a collector\'s item<BR>and will only go up in value.</P><P>Text at the bottom reads \"1984 - 2004\" with the Apple logo.<P>24" X 36"</P>','1');
oh[18] = new Item("Pentium Snail Poster","59.95",10,'pentiumsnail.jpg','<P>\"Some people think the Pentium II is the fastest processor in the world. Not quite. The chip inside of every new Power Macintosh G3 is up to twice as fast.\"</P><P>Irony at it\'s best. Now that Macs use Intel chips, this collector\'s item is sure to increase in value.</P><P>Size: 26" X 21"</P>','1');
oh[19] = new Item("Say Hello to iPod Poster","99.95",10,'iPodposter.jpg','<P>In 2001 the iPod defined the digital music revolution.<BR>Now you can own the first iPod poster ever made!<BR>This is an extremely rare item and sure to be a collector\'s<BR>item in years to come.</P><P>Say hello to iPod.<BR>1,000 songs. In your pocket.<P>Size: 22" X 28"</P>');
oh[20] = new Item("Aperture Poster","69.95",6,'Aperture.jpg','Introducing Aperture<P>Everything you need for after the shoot.</P><P>Size: 22" x 28"</P>');

oh[21] = new Item("Davis Poster Folded","19.95",10,'15','Miles Davis');
oh[22] = new Item("Hillary Poster Folded","19.95",10,'14','Edmund Hillary');

oh[23] = new Item("Chavez Poster 11x17","79.95",7,'11','Cesar Chavez');
oh[24] = new Item("Lennon Poster 11x17","199.95",5,'11','John Lennon');
oh[25] = new Item("Gandhi Poster 11x17","89.95",4,'11','Gandhi');
oh[26] = new Item("Picasso Poster 11x17","149.95",7,'11','Pablo Picasso');
oh[27] = new Item("Watson Poster 11x17","79.95",10,'11','James Watson');
oh[28] = new Item("Earhart Poster 11x17","99.95",2,'11','Amelia Earhart');
oh[29] = new Item("Einstein Poster 11x17","299.95",1,'11','Albert Einstein');
oh[30] = new Item("Davis Poster 11x17","149.95",10,'11','Miles Davis');
oh[31] = new Item("Henson Poster 11x17","199.95",3,'11','Jim Henson');
oh[32] = new Item("Goodall Poster 11x17","99.95",4,'11','Jane Goodall');

oh[33] = new Item("Edison Poster 24x36","249.95",7,'24','Thomas Edison');
oh[34] = new Item("Turner Poster 24x36","149.95",1,'24','Ted Turner');
oh[35] = new Item("Picasso Poster 24x36","399.95",3,'24','Pablo Picasso');
oh[36] = new Item("Graham Poster 24x36","299.95",1,'24','Martha Graham');
oh[37] = new Item("Lucy Poster 36X24","399.95",8,'36','Lucy');
oh[38] = new Item("Adams Poster 36X24","399.95",3,'36','Ansel Adams');
oh[39] = new Item("Davis Poster 24x36","499.95",5,'24','Miles Davis');
oh[41] = new Item("Henson Poster 24x36","499.95",4,'24','Jim Henson');
oh[43] = new Item("Hitchcock Poster 24x36","399.95",1,'24','Alfred Hitchcock');
oh[44] = new Item("Callas Poster 24x36","299.95",2,'24','Maria Callas');
oh[45] = new Item("Chavez Poster 36X24","399.95",2,'36','Cesar Chavez');
oh[47] = new Item("Gandhi Poster 24x36","399.95",2,'24','Gandhi');
oh[48] = new Item("Einstein Poster 24x36","699.95",1,'24','Albert Einstein');

oh[52] = new Item("Black Baseball Cap","29.95",10,'capblack.gif','<P>Heavy twill black cap with embroidered<BR>White Apple Logo</P><P>Adjustable cloth band with metal buckle </P>','1');

oh[53] = new Item("MD iPhone T-shirt","19.95",10);
oh[54] = new Item("LG iPhone T-shirt","19.95",6);
oh[55] = new Item("XL iPhone T-shirt","19.95",2);
oh[56] = new Item("XXL iPhone T-shirt","21.95",9);

oh[57] = new Item("MD I\'m a Mac T-shirt","24.95",9);
oh[58] = new Item("LG I\'m a Mac T-shirt","24.95",10);
oh[59] = new Item("XL I\'m a Mac T-shirt","24.95",10);

oh[60] = new Item("MD Black Polo Shirt","49.95",10);
oh[61] = new Item("LG Black Polo Shirt","49.95",1);
oh[62] = new Item("XL Black Polo Shirt","49.95",10);
oh[63] = new Item("XXL Black Polo Shirt","51.95",10);

oh[64] = new Item("MD Navy Polo Shirt","49.95",9);
oh[65] = new Item("LG Navy Polo Shirt","49.95",0);
oh[66] = new Item("XL Navy Polo Shirt","49.95",10);
oh[67] = new Item("XXL Navy Polo Shirt","51.95",1);

oh[68] = new Item("MD iPod Party T-shirt","12.95",10);
oh[69] = new Item("LG iPod Party T-shirt","12.95",10);
oh[70] = new Item("XL iPod Party T-shirt","12.95",10);
oh[71] = new Item("XXL iPod Party T-shirt","12.95",7);

oh[72] = new Item("MD Therefore iPod T-shirt","12.95",10);
oh[73] = new Item("LG Therefore iPod T-shirt","12.95",10);
oh[74] = new Item("XL Therefore iPod T-shirt","12.95",10);
oh[75] = new Item("XXL Therefore iPod T-shirt","12.95",0);

oh[76] = new Item("MD Think Different T-shirt","24.95",10);
oh[77] = new Item("LG Think Different T-shirt","24.95",0);
oh[78] = new Item("XL Think Different T-shirt","24.95",2);
oh[79] = new Item("XXL Think Different T-shirt","26.95",10);

oh[80] = new Item("MD Once You Go Mac T-shirt","24.95",10);
oh[81] = new Item("LG Once You Go Mac T-shirt","24.95",0);
oh[82] = new Item("XL Once You Go Mac T-shirt","24.95",10);
oh[83] = new Item("XXL Once You Go Mac T-shirt","26.95",8);

oh[84] = new Item("MD Black Apple T-shirt","24.95",10);
oh[85] = new Item("LG Black Apple T-shirt","24.95",0);
oh[86] = new Item("XL Black Apple T-shirt","24.95",0);
oh[87] = new Item("XXL Black Apple T-shirt","26.95",10);

oh[88] = new Item("MD Therefore iMac T-shirt","24.95",10);
oh[89] = new Item("LG Therefore iMac T-shirt","24.95",0);
oh[90] = new Item("XL Therefore iMac T-shirt","24.95",9);
oh[91] = new Item("XXL Therefore iMac T-shirt","26.95",8);

oh[92] = new Item("MD Black Long Sleeve Shirt","29.95",10);
oh[93] = new Item("LG Black Long Sleeve Shirt","29.95",10);
oh[94] = new Item("XL Black Long Sleeve Shirt","29.95",10);

oh[95] = new Item("SM Ladies Black T-shirt","24.95",10);
oh[96] = new Item("MD Ladies Black T-shirt","24.95",10);
oh[97] = new Item("LG Ladies Black T-shirt","24.95",10);

oh[99] = new Item("MD Blue Tie-Dye T-shirt","24.95",10);
oh[100] = new Item("LG Blue Tie-Dye T-shirt","24.95",10);
oh[101] = new Item("XL Blue Tie-Dye T-shirt","24.95",10);

oh[102] = new Item("MD Black Hooded Sweatshirt","39.95",8);
oh[103] = new Item("LG Black Hooded Sweatshirt","39.95",10);
oh[104] = new Item("XL Black Hooded Sweatshirt","39.95",10);
oh[98] = new Item("XXL Black Hooded Sweatshirt","39.95",9);

oh[105] = new Item("SM Ladies Pink T-shirt","19.95",8);
oh[106] = new Item("MD Ladies Pink T-shirt","19.95",10);
oh[107] = new Item("LG Ladies Pink T-shirt","19.95",10);

oh[108] = new Item("MD Fleece Apple Jacket","59.95",10);
oh[109] = new Item("LG Fleece Apple Jacket","59.95",0);
oh[110] = new Item("XL Fleece Apple Jacket","59.95",7);
oh[111] = new Item("XXL Fleece Apple Jacket","61.95",5);

oh[114] = new Item("Graphite Apple Mouse Pad","15.95",10,'MPgraphitelogo.gif','<P>This professional mouse pad features a graphite Apple logo.</P><P>It has a cloth top and a high traction neoprene undercoating to adhere to your desk. This mouse pad works great with all optical and mechanical mice.</P><P>8\" in diameter<BR>1/8" thick</P>','1');
oh[115] = new Item("Black & White Apple Mouse Pad","15.95",10,'BWMP.gif','<P>This professional mouse pad features a white Apple Logo.</P><P>It has a cloth top and a high traction neoprene undercoating to adhere to your desk. This mouse pad works great with all optical and mechanical mice.</P><P>Measures 8.5" X 7.5"<BR>1/8" thick</P>'); 
oh[116] = new Item("Aqua OS X Mouse Pad","9.95",10,'OSXMP.gif','<P>This professional mouse pad features features the original Aqua OS X Logo.</P><P>It has a cloth top and a high traction neoprene undercoating to adhere to your desk. This mouse pad works great with all optical and mechanical mice.</P><P>7.5" in diameter<BR>1/8" thick</P>','1');
oh[117] = new Item("Blue Apple Mouse Pad","15.95",10,'MPbluelogo.gif','<P>This professional mouse pad features a blue Apple logo.</P><P>It has a cloth top and a high traction neoprene undercoating to adhere to your desk. This mouse pad works great with all optical and mechanical mice.</P><P>8\" in diameter<BR>1/8" thick</P>','1');
oh[118] = new Item("Black Vintage Mouse Pad","15.95",10,'MPvintageblack.gif','<P>This professional mouse pad features features the vintage multicolored Apple logo.</P><P>It has a cloth top and a high traction neoprene undercoating to adhere to your desk. This mouse pad works great with all optical and mechanical mice.</P><P>8.5\" X 7.5\"<BR>1/8" thick</P>','1');

oh[120] = new Item("Picasso Mac Sticker","69.95",4,'picassosticker.gif','<P>This ultra-rare sticker from 1984 was the very first Macintosh decal Apple ever produced.</P><P>3.5\" in diameter</P>','1');
oh[121] = new Item("Mac OS 8 Bumper Sticker","5.95",5,'brakefor8.jpg','<BR><BR><P>This bumper sticker from 1997 is pure Apple retro. If you\'re a big fan of Mac OS 8, then this is the bumper sticker for you!</P><P>11.5\" X 3\"</P>','1');
oh[122] = new Item("Pentium Snail Sticker Set","9.95",10,'snailstickers.jpg','<P>Apple released these stickers in the early 90\'s<BR>during their G3 \"Pentium Snail\" ad campaign.</P><P>The text at the top and bottom is printed on the cellophane package which contains 3 sheets of 4 stickers each for a total of 12 stickers.</P><P>As Apple moves their product line to Intel chips in the next few years, this collector\'s item is sure to increase in value.</P><P>Each snail sticker is 1.5\" square.</P>','1');
oh[123] = new Item("White Apple Stickers","18.95",5,'whitestickers.gif','<P>Two white Apple adhesive stickers identical to those you get with a new Mac</P><P>Each sticker approximately 3" tall</P>');
oh[124] = new Item("Oval Apple Euro Decal","6.95",10,'ovalsticker.gif','<P>This classy Apple Euro decal is cut from automotive quality 3M outdoor vinyl, UV protected, and has a 7 year durability rating.</P><P>The sticker can be easily removed and will not harm glass or metal surfaces.</P><P>3.5" X 5.75\"</P>');
oh[125] = new Item("Vintage Apple Decal Set","9.95",10,'vindecals.gif','<P>Two Vintage Apple logo static cling decals</P><P>They stick to any smooth surface and can be easily moved</P><P>Inverted for inside window placement</P><P>Approximately 3" tall</P>');
oh[126] = new Item("Vintage Logo Tattoo","2.95",10,'vintagetattoo.jpg','<P>This temporary tattoo sheet features the vintage Apple multicolored logo. The small tattoo is 5/8 inches tall and the bigger one is 1.5 inches tall.</P>','1');
oh[127] = new Item("Vintage Apple 4 Sticker Set","39.95",10,'vinsticker4.jpg','<P>Four Vintage Apple Logo Stickers</P><P>Die cut vinyl stickers in the shape of the apple logo.<BR>Mounted for easy application onto any smooth surface.</P><P>Logos are 4" and 2" tall</P>');
oh[128] = new Item("iPod Nano Magnet Set","7.95",10,'nanomag.gif','<P>Set of 10 iPod Nano magnets.<BR><BR>Five black and five white.</P><P>3.5" tall</P>','1');
oh[129] = new Item("Vintage Apple 4 Inch Sticker","24.95",10,'vin4inchdecal.gif','<P>This rare vintage Apple sticker was produced by Apple in the late 70\'s and early 80\'s, notice the cool font Apple used back then.</P><P>4" tall</P>','1');
oh[130] = new Item("Jaguar OS X Sticker Set","2.95",10,'jaguarstickers.gif','<P>Set of four Mac OS X 10.2 Jaguar Stickers</P><P>Wildly Innovative.<BR>Hello Kitty.<BR>Purrrrfection.<BR>Stunning, cunning, and always runnning.</P><P>Each approximately 3" X 4"</P>');
oh[131] = new Item("OS X Domed Stickers","4.95",10,'OSXbadges.jpg','<P>Four clear epoxy domed stickers featuring the Mac OS X logo</P><P>Each individually mounted on an adhesive background</P><P>Approximately 1" in diameter</P>');
oh[133] = new Item("iBook Intro Magnet","5.95",10,'iBookmagnet.gif','<P>This cool magnet was released with the introduction of the very frst iBook. It features the Tangerine iBook with the text:</P><P>iMac to go. Introducing iBook.<BR>Think Different<P>3.5" in diameter.</P>');
oh[132] = new Item("Student Door Sign","9.95",10,'doorhang.gif','<P><I>Actually I\'m zoned out on my bed.</I></P><P>Apple puts a new spin on the student "Do Not Disturb" sign.</P><P>See the close up view to read the text.</P><P>Made from laminated card stock.<BR>9\" Tall</P>','1');
oh[134] = new Item("Apple Fridge Poetry Set","12.95",10,'jaguarpoetry.gif','<P>This magnetic \"refrigerator poetry\" set makes<BR>cool Apple, Mac & iPod related sentences.</P><P>The outer frame doubles as a magnetic picture frame for a 3\" X 5\" photograph.</P>','1');
oh[135] = new Item("Mac OS 8 Tattoo Set","2.95",10,'OS8tattoo.jpg','<P>This set includes two temporary tattoo sheets<BR>featuring the Mac OS 8 logo.</P><P>These would be great for a child\'s 8th birthday<BR>party or Grandpa\'s 88th!</P><P>2.5\" tall</P>','1');

oh[136] = new Item("Apple License Plate Frame","13.95",10,'frame.gif','<P>Black heavy plastic frame with white print.</P><P>Fits standard US automobile license plates.</P>');
oh[137] = new Item("Black Apple Lanyard","14.95",10,'lanyard.gif','<P>Black shoestring lanyard features the Apple logo, a velcro break away fastener, and a clip to help you keep track of those necessary items.</P><P>16\" long','1');
oh[138] = new Item("Apple T-shirts Book","79.95",10,'tshirtbook.gif','<P>Apple employees have long been expressing themselves with t-shirt art. This fascinating <B>out of print</B> book chronicles the 25 year history of Apple Computer using photographs of Apple t-shirts.</P><P>It is a lavish, 204-page, hardcover, coffee table book with over 1,500 full-color photographs, most explained with interesting behind-the-scenes stories that you\'ll find nowhere else.</P>');
oh[139] = new Item("Think Different Calculator","19.95",10,'TDcalc.gif','Rare calculator from Apple\'s now discontinued<BR>Think Different campaign.<P>Press a button and the cover flips back to provide<BR>a convenient stand.</P>');
oh[143] = new Item("Retractable Badge Holder","12.95",10,'retractbadge.gif','<P>This badge holder features a strong retractable cord, plastic construction and a belt clip on the back.</P><P>Fully extended it is 31 inches long.</P>'); 
oh[144] = new Item("Black Swiss Army Knife","29.95",10,'swissblack.gif','<P>Genuine Victorinox Swiss Army Knife<BR>Black with white Apple Logo</P><P>Includes scissors, small blade, toothpick,<BR>file, tweezers, and metal gift box</P><P>Approximately 2.5 inches long</P>','1');
oh[145] = new Item("Red Swiss Army Knife","29.95",10,'swissred.gif','<P>Genuine Victorinox Swiss Army Knife<BR>Red with white Apple Logo</P><P>Includes scissors, small blade, toothpick,<BR>file, tweezers, and metal gift box</P><P>Approximately 2.5 inches long</P>','1');
oh[146] = new Item("Blue Swiss Army Knife","29.95",10,'swissblue.gif','<P>Genuine Victorinox Swiss Army Knife<BR>Transparent Blue with white Apple Logo</P><P>Includes scissors, small blade, toothpick,<BR>file, tweezers, and metal gift box</P><P>Approximately 2.5 inches long</P>','1');

oh[153] = new Item("Vintage Apple Lapel Pin","29.95",10,'lapelpin.gif','<P><BR>Brass Lapel Pin with vintage Apple Logo<P>These lapel pins are a part of early personal<BR>computer history and are going fast!</P>');
oh[154] = new Item("iMac YUM Button","3.95",10,'YUMbutton.gif','This classic button heralded the introduction of color into the world of personal computing.</P><P>Features the original iMac colors:<BR>Grape, Tangerine, Lime, Strawberry, and Blueberry</P><P>Self-closing pin in back</P><P>2" X 3"</P>','1');
oh[155] = new Item("iPod Button (Running)","19.95",4);
oh[156] = new Item("iPod Button (Drinking)","19.95",5);
oh[157] = new Item("iPod Button (Fire)","19.95",1);
oh[158] = new Item("iPod Button (Trash)","19.95",6);

oh[162] = new Item("Vintage Apple Keyfob","29.95",4,'applekeyfob.gif','Vintage Apple Logo<P>Black leather and steel keyfob</P><P>Size 2 1/2"</P>');
oh[164] = new Item("Mac OS X Keyfob","5.95",10,'OSXkeyfob.gif','Mac OS X Logo<P>Black leather and steel keyfob</P><P>Size 2 1/2"</P>');

oh[168] = new Item("Men\'s Apple Watch","59.95",10,"sportswatch.gif",'<LI>Two tone matte and polished silver<LI>Apple logo on sun ray blue face<LI>Black leather strap<LI>Japanese quartz timing<BR><BR><LI>Manufacturer\'s lifetime guarantee');
oh[169] = new Item("Retro Apple Watch","349.95",10,'retrowatch.jpg','<P>This ultra rare watch was produced by Apple<BR>in the late 1990\'s and features:</P><P>Colorful anodized aluminum case and hands<BR>Scratch resistant glass<BR>Shock resistant<BR>Japanese quartz timing<BR>Mac OS embossed plastic nonallergic band.<BR><I>Brand new, never worn. New battereies in 2010.</I></P><P>','1');

oh[172] = new Item("Blue Apple Logo Mug","24.95",10,'mugblue.gif','<P>Fire glazed ceramic mug featuring<BR>the Aqua style Apple logo<BR>in blue on both sides.</P><P>12 oz.</P>','1');
oh[173] = new Item("Graphite Apple Logo Mug","39.95",10,'muggraphite.gif','<P>Fire glazed ceramic mug featuring<BR>the Aqua style Apple logo<BR>in graphite on both sides.</P><P>12 oz.</P>','1');
oh[175] = new Item("Vintage Apple Logo Mug","29.95",10,'mugvintage.gif','<P>Fire glazed ceramic mug featuring<BR>the vintage Apple logo on both sides.</P><P>12 oz.</P>','1');
oh[176] = new Item("Classic Apple Mug","24.95",10,'mugclassic.gif','<P>Fire glazed ceramic mug featuring<BR> the vintage logo and "Apple" logotype<BR>wrapped around the mug.</P><P>12 oz.</P>','1');

oh[180] = new Item("Black Apple Projection Pen","29.95",10);
oh[181] = new Item("Silver Apple Projection Pen","29.95",1);

oh[182] = new Item("Stainless Steel Apple Pen","19.95",10,'steelpen.gif','This brushed stainless steel pen is very solid, writes beautifully, and features the Apple logo in black on the pen\'s cap.  Black upper section, with texture for comfortable grip.  Black ink.<P>Comes in a black velvet carrying sleeve.</P>');
oh[183] = new Item("White Ergonomic Pen","12.95",10,'ergpenwhite.gif','This beautiful white pen is very solid, has an extra wide comfort grip, and features the Apple logo in black. Also includes a pocket clip on the back (not shown).</P><P>Black ink.</P>');
oh[184] = new Item("Blue Ergonomic Pen","12.95",10,'ergpen.gif','This indigo blue pen is very solid, has an extra wide comfort grip, and features the Apple logo in white. Also includes a pocket clip on the back (not shown).</P><P>Black ink.</P>');
oh[185] = new Item("Red Ballpoint Pen","14.95",4);
oh[186] = new Item("Blue Ballpoint Pen","14.95",2);
oh[187] = new Item("Grey Ballpoint Pen","14.95",1);
oh[188] = new Item("Orange Ballpoint Pen","14.95",10);
oh[195] = new Item("Colored Steel Pen Set","49.95",10,'steelpenset.gif','This set includes five steel pens with the Apple logo, each one featuring a different colored soft grip.</P><P>All pens have black ink.</P>');

oh[196] = new Item("Apple Note Pad","5.95",30,'notepad.gif','<P>Black Apple Logo</P><P>50 Pages 4" X 7"</P>');
oh[197] = new Item("Apple Post-It Notes","5.95",30,'post-it.gif','Perfect at home or in the office!<P>Grey Apple Logo on White</P><P>50 Post-It Notes  3" X 3"</P>');
oh[198] = new Item("Small Apple Notebook","29.95",2,'notebook.gif','<P>This small 5\" X 7\" notebook easily fits in a purse or jacket pocket and is perfect for carrying with you. It features a graphite Apple logo under a translucent plastic cover.</P><P>Approximately 80 ruled sheets.</P>');
oh[199] = new Item("Blue Apple Folder","9.95",30,'folderblue.gif','<P>This white card stock folder has two pockets<BR>inside and features the aqua style Apple<BR>logo in blue.</P><P>Text on the back: apple.com</P><P>8.5\" X 11\"</P>');
oh[200] = new Item("Large Apple Portfolio","49.95",10);

oh[201] = new Item("Vintage Apple Banner","299.95",1,'vintagebanner.gif','<P>A super rare piece of Apple\'s history!</P><P>This big nylon banner features the<BR>vintage multicolored Apple logo<BR>and brass grommets at the top.</P><P>These banners are in mint condition, folded and sealed in their original bags.<P>Size: 48\" X 46\"</P>',"1");
oh[202] = new Item("Flat Panel iMac Poster","29.95",2,'iMac2002.jpg','The new iMac.<BR>MacWorld San Francisco 2002<P>Mint Condition</P><P>Size: 22" X 28"</P>');
oh[203] = new Item("Blue iBook Poster 24X36","29.95",3,'iBookblue.jpg','Go Go Go.</P><P>MacWorld New York 1999</P><P>Size: 24" X 36"</P>','1');
oh[204] = new Item("G4 Two Brains Poster","29.95",2,'twobrains.jpg','<P>Two brains are better than one.</P><P>The dual processor Power Mac G4.</P><P>Think Different and the Apple Logo at the bottom</P><P>Size: 22" X 28"</P>','1');
oh[207] = new Item("White iBook Banner","129.95",1,'whiteibookbanner.jpg','<P>iBook</P><P>Think Different</P><P>This banner is made from white nylon and<BR>features dowel sleeves at both ends.</P><P>Size: 60\" X 24\"</P>','1');
oh[208] = new Item("Mac OS X Jaguar Poster","59.95",1,'jagposter.jpg','<P>A beautiful poster of the Mac OS X Jaguar logo.<BR>(No animals were harmed in the making of this poster.)</P><P>Introducing Mac OS X Version 10.2 Jaguar</P><P>Size: 22" X 28"</P>');
oh[210] = new Item("iMac 4 Colors Banner","149.95",1,'imac4colorbanner.jpg','<P>iMac</P><P>Think Different</P><P>This banner is made from white nylon and<BR>features dowel sleeves at both ends.</P><P>Size: 60\" X 24\"</P>','1');
oh[212] = new Item("Original iMac Poster","199.95",2,'bondi-imac.jpg','<P>This is the very first poster of the now famous iMac -<BR>the computer that turned Apple Computer around<BR>financially in 1998 after Steve Jobs\' return.</P>This poster is a very rare collectible!</P><P>Size: 24" X 36"</P>','1');