   // ---------------------------------------------------------------
   // Display the distributor location information.
   //
   function popUpInfo(distributor)
   {
     mySite = "http://heritagepictureframes.com/"
     myChoice = distributor + ".html";
     day = new Date();
     id = day.getTime(); // used to make up a random variable and window name.
     eval("page" + id + " = window.open(mySite + myChoice, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=350,height=350');");
   }

   // ---------------------------------------------------------------
   // Display a large moulding image.
   //
   function popUpMoulding(moulding)
   {
     mySite = "http://heritagepictureframes.com/"
     myChoice = "mouldings/" + moulding + ".jpg";
     day = new Date();
     id = day.getTime(); // used to make up a random variable and window name.
     eval("page" + id + " = window.open(mySite + myChoice, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=560,height=415');");
   }

