Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

msheno01

Archived
  • Posts

    157
  • Joined

  • Last visited

Posts posted by msheno01

  1. srry,

    JSgraphs might have been for a contr. that I was playing with.

    If you u dont have that directory, then it is not needed.

     

    the only thing I would suggest is to make sure that all the files in the directory graphs are set to 777. That means that you go in there and make sure that all the files are set to 777.

     

    I am speaking from what I did to get it working. It might be right or wrong. But all I know is that once I did that, it started working.

     

    Moneer

  2. Cool I got it working.

    From what I can tell, here is what I did:

     

    Set premissions to 777 in the following folders. Make sure that you set the premissions for thoes folders and all the files within them...I did that through ws_ftp(it gives you an option)

     

     

    /admin/images/graphs

    and

    /admin/jsgraphs

     

    Excellent cont.

    Thanks

  3. I did that and I see the menu for the store statistics.

    However, when I click store statistics or and other statistics I show a page that does not have any graphs. Even when I choose another form of chart, it doesnt display.

     

    Hope that makes sense

    Moneer

  4. I have installed the contribution but it refuses to show the next and previous buttons. It shows the dropdown list but not the buttons. I have checked that the files are in english/images/buttons and that the name correctly matches the one referenced in the spil page file. Here is a peice of the code in

    // display fancy split-page-number-links (Noel Latsha, TEAM DEVOSC)
    function devosc_display_fancy_links($parameters = '')
    {
    global $PHP_SELF, $request_type; 
    $display_links_previous = '';
    $display_links_next = ''; 
    if ($this->current_page_number > 1) $display_link_previous = '<a href="' . tep_href_link(basename($PHP_SELF), $parameters . $this->page_name . '=' . ($this->current_page_number - 1), $request_type) . '">' . tep_image_button('button_previous.gif', IMAGE_BUTTON_PREVIOUS) . '</a>';
    
    if (($this->current_page_number < $this->number_of_pages) && ($this->number_of_pages != 1)) $display_link_next = '<a href="' . tep_href_link(basename($PHP_SELF), $parameters . $this->page_name . '=' . ($this->current_page_number + 1), $request_type) . '">' . tep_image_button('button_next.gif', IMAGE_BUTTON_NEXT) . '</a>'; 
    echo '<td width="66" align="right" height="20" valign="top">';
    echo $display_link_previous . '  </td>';
    if($this->number_of_pages > 1) {
    ?>
    <td width="20" align="right" height="20" valign="top">
    <form name="jump_to" method="get" action="<? tep_href_link(basename($PHP_SELF), $parameters) ?>">
    <?php
    $pairs = explode("&", $parameters);
    foreach($pairs as $pair)
    {
    list($key,$value) = explode("=", $pair);
    echo tep_draw_hidden_field(rawurldecode($key), rawurldecode($value));
    }
    
    ?>
    <select name="page" onChange="submit();">
    <?php
    for ($jump_to_page = 1; ($jump_to_page <= $this->number_of_pages); $jump_to_page++) {
    if ($jump_to_page == $this->current_page_number) { 
    echo '<option value='. $jump_to_page .' SELECTED>' . $jump_to_page . '</option>';
    }
    else
    {
    echo '<option value='. $jump_to_page . '>' . $jump_to_page . '</option>';
    }
    }
    ?>
    </select></form>   
    </td>
    <td width="66" align="right" height="20" valign="top"> 
    <?php 
    }
    echo $display_link_next . '</td>';
    }
    } 
    ?>

     

    Any help

    Thanks

    Moneer

  5. Quick question. I was testing the emails that go out when the status of the order changes and found out that they are send in html in a weird language with templates from another company. The file that edits that template is html_email.php under modules.

     

    I dont even know where to change the images or the link to modify it.

     

    here is the file--any idea on how to change it?

     

    <?php

    /*

     $Id: send_html_mail, v 5.0 2003/06/29 22:50:52 Gyakutsuki Exp $

     

     osCommerce, Open Source E-Commerce Solutions

     http://www.oscommerce.com

     

     Copyright (c) 2003 osCommerce

     

     Released under the GNU General Public License

    */

     

     

    $html_orders = "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\">";

    $html_orders .= "<HTML>";

    $html_orders .= "<HEAD>";

    $html_orders .= "<TITLE> $EMAIL_TEXT_TITLE  </TITLE>";

    $html_orders .= "<META http-equiv=Content-Type content=\"text/html; charset=iso-8859-1\">";

    $html_orders .= "<META content=\"MSHTML 6.00.2900.2180\" name=GENERATOR>";

    $html_orders .= "$VARSTYLE ";

    $html_orders .= "</HEAD>";

    $html_orders .= "$BODY ";

    $html_orders .= "<BR> ";

    $html_orders .= "<DIV align=\"center\"> ";

    $html_orders .= "  <TABLE cellSpacing=\"0\" cellPadding=\"0\" width=\"64\" border=\"0\"> ";

    $html_orders .= "    <TBODY>";

    $html_orders .= "     <TR> ";

    $html_orders .= "        <TD align=\"middle\"> ";

    $html_orders .= "    $EMAIL_IMAGE_TITRE_ENVOI ";

    $html_orders .= "   </TD> ";

    $html_orders .= "      </TR>";

    $html_orders .= "    <TR>";

    $html_orders .= "    <TD align=\"middle\">";

    $html_orders .= "         <TABLE cellSpacing=\"0\" cellPadding=\"0\" width=\"100%\" border=\"0\">";

    $html_orders .= "            <TBODY>";

    $html_orders .= "              <TR> ";

    $html_orders .= "                <TD align=\"middle\" width=\"28\">  </TD> ";

    $html_orders .= "                  <TD align=\"middle\" bgColor=\"#ffffff\">";

    $html_orders .= "                   <TABLE cellSpacing=\"2\" cellPadding=\"5\" border=\"0\">";

    $html_orders .= "                    <TBODY> ";

    $html_orders .= "                      <TR> ";

    $html_orders .= "                        <TD>";

    $html_orders .= "                          <TABLE cellSpacing=\"0\" cellPadding=\"0\" width=\"570\" border=\"0\">";

    $html_orders .= "                            <TBODY>";

    $html_orders .= "                              <TR> ";

    $html_orders .= "                                <TD>  $EMAIL_IMAGE_VARLOGO </TD> ";

    $html_orders .= "                                <TD vAlign=\"top\" align=\"right\" rowSpan=\"2\"> ";

    $html_orders .= "      <TABLE cellSpacing=\"1\" cellPadding=\"3\" align=\"right\" bgColor=\"#cc0000\" border=\"0\"> ";

    $html_orders .= "                                    <TBODY> ";

    $html_orders .= "                                      <TR> ";

    $html_orders .= "                                        <TD align=\"middle\" valign=\"top\" class=\"commande\"> ";

    $html_orders .= "        <div align=\"left\">";

    $html_orders .= "          $EMAIL_TEXT_ORDER_NUMBER   $oID <BR> ";

    $html_orders .= "                                             $EMAIL_TEXT_DATE_SHIPPING  ";

    $html_orders .= "            $EMAIL_TEXT_DATE </FONT> ";

    $html_orders .= "                                            </div>";

    $html_orders .= "                                        </TD> ";

    $html_orders .= "                                      </TR> ";

    $html_orders .= "                                    </TBODY> ";

    $html_orders .= "                                  </TABLE>";

    $html_orders .= "                                 </TD> ";

    $html_orders .= "                              </TR> ";

    $html_orders .= "                              <TR> ";

    $html_orders .= "                                <TD class=\"texte_small\"> ";

    $html_orders .= "                                 $STORE_NAME_ADRESS ";

    $html_orders .= "                                </TD> ";

    $html_orders .= "                              </TR> ";

    $html_orders .= "                            </TBODY> ";

    $html_orders .= "                          </TABLE>";

    $html_orders .= "                         </TD> ";

    $html_orders .= "                      </TR> ";

    $html_orders .= "                      <TR> ";

    $html_orders .= "                        <TD> ";

    $html_orders .= "                          <TABLE cellSpacing=\"0\" cellPadding=\"5\" border=\"0\"> ";

    $html_orders .= "                            <TBODY> ";

    $html_orders .= "                              <TR> ";

    $html_orders .= "                                <TD>";

    $html_orders .= "                                  <DIV align=\"center\"> ";

    $html_orders .= "                                    <CENTER> ";

    $html_orders .= "                                      <TABLE style=\"BORDER-COLLAPSE: collapse\" borderColor=\"#111111\" cellSpacing=\"0\" cellPadding=\"4\"  width=546 bgColor=\"#ffffff\" border=\"0\"> ";

    $html_orders .= "                                        <TBODY> ";

    $html_orders .= "                                          <TR> ";

    $html_orders .= "                                            <TD  vAlign=\"top\" bgColor=\"#ffffff\" colSpan=\"2\">";

    $html_orders .= "                                              <TABLE cellSpacing=4 cellPadding=\"0\" width=\"536\" border=\"0\"> ";

    $html_orders .= "                                                <TBODY> ";

    $html_orders .= "                                                  <TR> ";

    $html_orders .= "                                                    <TD vAlign=\"top\" align=\"middle\" colSpan=\"2\"> ";

    $html_orders .= "                                                     $EMAIL_IMAGE_ARGO ";

    $html_orders .= "                                                    </TD> ";

    $html_orders .= "                                                  </TR> ";

    $html_orders .= "                                                  <TR> ";

    $html_orders .= "                                                    <TD vAlign=\"top\" width=\"92\"> <div align=\"center\"> ";

    $html_orders .= "                                                      $EMAIL_IMAGE_FOURMI </div>";

    $html_orders .= "                                                     </TD> ";

    $html_orders .= "                                                    <TD vAlign=\"top\" class=\"texte_intro\"> ";

    $html_orders .= "         <P> $EMAIL_TEXT_DEAR </P> ";

    $html_orders .= "                                                       $EMAIL_TEXT_INTRO_CUSTOMERS   ";

    $html_orders .= "                                                      <div align=\"right\">";

    $html_orders .= "                                                          <p>$EMAIL_TEXT_TEXT_INTRO_CUSTOMERS_SERVICE</p>";

    $html_orders .= "                                                          <p>";

    $html_orders .= "                                                          <div align=\"left\">";

    $html_orders .= "                                                          </div>";

    $html_orders .= "                                                          <hr align=\"left\">";

    $html_orders .= "                                                          <div align=\"left\"><br>";

    $html_orders .= "          $EMAIL_TEXT_FOLLOW_ORDER <p>";

    $html_orders .= "          $EMAIL_TEXT_DATE_ORDERED ";

    $html_orders .= "          $EMAIL_TEXT_DATE_ORDER ";

    $html_orders .= "          $EMAIL_TEXT_INVOICE_URL <a href=\"  HTTP_SERVER . DIR_WS_CATALOG . 'account_history_info.php?order_id=' . $oID;\"> $EMAIL_IMAGE_COMMANDE </a>";

    $html_orders .= "         <br><br>";

    $html_orders .= "          $EMAIL_TEXT_STATUT<br><br>";

    $html_orders .= "         <li>";

    $html_orders .= "          $EMAIL_TEXT_STATUS_UPDATE1";

    $html_orders .= "         </li>";

    $html_orders .= "          $EMAIL_TEXT_COMMENTS_UPDATE ";

    $html_orders .= "          $notify_comments ";

    $html_orders .= "                                                          </div>";

    $html_orders .= "                                     <br>";

    $html_orders .= "                                                      </div>";

    $html_orders .= "                                                     </TD> ";

    $html_orders .= "                                                   </TR> ";

    $html_orders .= "                                                  <TR> ";

    $html_orders .= "                                                    <TD  vAlign=\"top\" colSpan=\"2\"> ";

    $html_orders .= "       <TABLE id=\"AutoNumber1\" cellSpacing=\"0\" cellPadding=\"0\" width=\"100%\" border=\"1\"> ";

    $html_orders .= "                                                        <TBODY> ";

    $html_orders .= "                                                          <TR> ";

    $html_orders .= "                                                            <TD class=\"tableau_texte_post\"> ";

    $html_orders .= "        <P align=\"center\">";

    $html_orders .= "        <B>";

    $html_orders .= "          $EMAIL_TEXT_POST ";

    $html_orders .= "          $EMAIL_IMAGE_POSTE ";

    $html_orders .= "        </P>";

    $html_orders .= "            </TD> ";

    $html_orders .= "                                                          </TR> ";

    $html_orders .= "                                                        </TBODY> ";

    $html_orders .= "                                                      </TABLE>";

    $html_orders .= "                                                    </TD> ";

    $html_orders .= "                                                  </TR> ";

    $html_orders .= "                                                </TBODY> ";

    $html_orders .= "                                              </TABLE>";

    $html_orders .= "                                             </TD> ";

    $html_orders .= "                                          </TR> ";

    $html_orders .= "                                          <TR> ";

    $html_orders .= "                                            <TD vAlign=\"top\" bgColor=\"#ffffff\" colSpan=\"2\"> ";

    $html_orders .= "                                              <TABLE style=\"BORDER-COLLAPSE: collapse\" borderColor=\"#111111\" cellSpacing=\"0\" borderColorDark=\"#999999\" cellPadding=\"0\" width=\"540\" borderColorLight=\"#999999\" border=\"1\"> ";

    $html_orders .= "                                                <TBODY> ";

    $html_orders .= "                                                  <TR> ";

    $html_orders .= "                                                    <TD> ";

    $html_orders .= "                                                      <TABLE id=\"AutoNumber1\" cellSpacing=\"4\" cellPadding=\"0\" width=\"100%\" border=\"0\"> ";

    $html_orders .= "                                                        <TBODY> ";

    $html_orders .= "                                                          <TR> ";

    $html_orders .= "                                                            <TD vAlign=\"top\" width=\"100%\">";

    $html_orders .= "                                                              <TABLE cellSpacing=\"1\" cellPadding=\"4\" width=\"531\" align=\"center\" bgColor=\"#ffffff\" border=\"0\"> ";

    $html_orders .= "                                                                <TBODY> ";

    $html_orders .= "                                                                  <TR> ";

    $html_orders .= "                                                                    <TD vAlign=\"top\" class=\"tableau_delay\"> ";

    $html_orders .= "          $EMAIL_TEXT_DELAY ";

    $html_orders .= "            </TD> ";

    $html_orders .= "                                                                  </TR> ";

    $html_orders .= "                                                                  <TR> ";

    $html_orders .= "                                                                    <TD vAlign=\"top\" class=\"tableau_delay_content\"> ";

    $html_orders .= "          $EMAIL_TEXT_DELAY_CONTENT ";

    $html_orders .= "            </TD> ";

    $html_orders .= "                                                    </TR> ";

    $html_orders .= "                                                                </TBODY> ";

    $html_orders .= "                                                              </TABLE>";

    $html_orders .= "                                                            </TD> ";

    $html_orders .= "                                                          </TR> ";

    $html_orders .= "                                                          <TR> ";

    $html_orders .= "                                                            <TD vAlign=\"top\" colSpan=\"3\"> ";

    $html_orders .= "            <TABLE cellSpacing=\"1\" cellPadding=\"4\" width=\"531\" align=\"center\" border=\"0\"> ";

    $html_orders .= "                                                                <TBODY> ";

    $html_orders .= "                                                                  <TR> ";

    $html_orders .= "                                                                    <TD vAlign=\"top\" class=\"tableau_delay\" >";

    $html_orders .= "          $EMAIL_TEXT_WARNING  ";

    $html_orders .= "            </TD>";

    $html_orders .= "                                                                  </TR> ";

    $html_orders .= "                                                                 <TR> ";

    $html_orders .= "                                                                    <TD vAlign=\"top\" class=\"tableau_delay_warning\">";

    $html_orders .= "          $EMAIL_TEXT_WARNING_CONTENT ";

    $html_orders .= "            </TD> ";

    $html_orders .= "                                                                  </TR> ";

    $html_orders .= "                                                                </TBODY> ";

    $html_orders .= "                                                              </TABLE>";

    $html_orders .= "                                                            </TD> ";

    $html_orders .= "                                                          </TR> ";

    $html_orders .= "                                                          <TR> ";

    $html_orders .= "                                                            <TD vAlign=\"top\" colSpan=\"3\">";

    $html_orders .= "        <TABLE cellSpacing=\"1\" cellPadding=\"4\" width=\"531\" align=\"center\" border=\"0\"> ";

    $html_orders .= "                                                                <TBODY> ";

    $html_orders .= "                                                                  <TR> ";

    $html_orders .= "                                                                    <TD cvAlign=\"top\" class=\"tableau_delay\">";

    $html_orders .= "          <STRONG>  $EMAIL_TEXT_COMPOSE </STRONG> ";

    $html_orders .= "            </TD> ";

    $html_orders .= "                                                                  </TR> ";

    $html_orders .= "                                                                  <TR> ";

    $html_orders .= "                                                                    <TD vAlign=\"top\"  class=\"tableau_delay_content\"> ";

    $html_orders .= "           $EMAIL_TEXT_COMPOSE_CONTENT ";

    $html_orders .= "                   </TD> ";

    $html_orders .= "                                                                  </TR> ";

    $html_orders .= "                                                                </TBODY> ";

    $html_orders .= "                                                              </TABLE>";

    $html_orders .= "           </TD> ";

    $html_orders .= "                                                          </TR> ";

    $html_orders .= "                                                        </TBODY> ";

    $html_orders .= "                                                      </TABLE>";

    $html_orders .= "          </TD> ";

    $html_orders .= "                                                  </TR> ";

    $html_orders .= "                                                </TBODY> ";

    $html_orders .= "                                              </TABLE>";

    $html_orders .= "         </TD> ";

    $html_orders .= "                                          </TR> ";

    $html_orders .= "                                        </TBODY> ";

    $html_orders .= "                                      </TABLE> ";

    $html_orders .= "                                    </CENTER> ";

    $html_orders .= "                                  </DIV></TD> ";

    $html_orders .= "                              </TR> ";

    $html_orders .= "                              <TR height=5> ";

    $html_orders .= "                                 <TD height=5></TD> ";

    $html_orders .= "                              </TR> ";

    $html_orders .= "                              <TR> ";

    $html_orders .= "                                <TD class=\"tableau_texte_contact\"> ";

    $html_orders .= "                                <B> $EMAIL_TEXT_CONTACT_SERVICE_CLIENT   ";

    $html_orders .= "                                 $VARHTTP</B> ";

    $html_orders .= "    </TD> ";

    $html_orders .= "                              </TR> ";

    $html_orders .= "                              <TR> ";

    $html_orders .= "                                <TD> ";

    $html_orders .= "                                  <TABLE style=\"BORDER-COLLAPSE: collapse\"  borderColor=\"#111111\" cellSpacing=\"0\"  borderColorDark=\"#999999\" cellPadding=\"0\" width=560 borderColorLight=\"#999999\" border=\"1\"> ";

    $html_orders .= "                                    <TBODY> ";

    $html_orders .= "                                      <TR> ";

    $html_orders .= "                                        <TD vAlign=\"top\">";

    $html_orders .= "                                          <TABLE style=\"LEFT: 0px; TOP: 1px\" cellSpacing=\"0\" cellPadding=\"4\" border=\"0\" width=100%> ";

    $html_orders .= "                                            <TBODY> ";

    $html_orders .= "                                              <TR> ";

    $html_orders .= "                                                <TD vAlign=\"top\" width=\"33%\">";

    $html_orders .= "                                                  <TABLE cellSpacing=\"0\" cellPadding=\"4\"  width=\"100%\" border=\"0\"> ";

    $html_orders .= "                                                    <TBODY> ";

    $html_orders .= "                                                      <TR> ";

    $html_orders .= "                                                        <TD class=\"tableau_delay\"> ";

    $html_orders .= "                                                         <B> $EMAIL_TEXT_CONTACT_SERVICE_CLIENT_SHEET1  </B>";

    $html_orders .= "                                                         </TD> ";

    $html_orders .= "                                                      </TR> ";

    $html_orders .= "                                                      <TR> ";

    $html_orders .= "                                                        <TD class=\"tableau_delay_content\" height=\"75\"> ";

    $html_orders .= "          $EMAIL_TEXT_CONTACT_SERVICE_CLIENT_SHEET_CONTENT1 ";

    $html_orders .= "        </TD> ";

    $html_orders .= "                                                      </TR> ";

    $html_orders .= "                                                    </TBODY> ";

    $html_orders .= "                                                  </TABLE>";

    $html_orders .= "                                                </TD> ";

    $html_orders .= "                                                <TD vAlign=\"top\" width=\"33%\">";

    $html_orders .= "                                                 <TABLE cellSpacing=\"0\" cellPadding=\"4\" width=\"100%\" border=\"0\"> ";

    $html_orders .= "                                                    <TBODY> ";

    $html_orders .= "                                                      <TR> ";

    $html_orders .= "                                                        <TD class=\"tableau_delay\"> ";

    $html_orders .= "       <B> $EMAIL_TEXT_CONTACT_SERVICE_CLIENT_SHEET2 </B> ";

    $html_orders .= "       </TD> ";

    $html_orders .= "                                                      </TR> ";

    $html_orders .= "                                                      <TR> ";

    $html_orders .= "                                                        <TD class=\"tableau_delay_content\" height=75>";

    $html_orders .= "        $EMAIL_TEXT_CONTACT_SERVICE_CLIENT_SHEET_CONTENT2 ";

    $html_orders .= "       </TD> ";

    $html_orders .= "                                                      </TR> ";

    $html_orders .= "                                                    </TBODY> ";

    $html_orders .= "                                                  </TABLE>";

    $html_orders .= "                                                 </TD> ";

    $html_orders .= "                                                <TD vAlign=\"top\" width=\"33%\">";

    $html_orders .= "                                                  <TABLE cellSpacing=\"0\" cellPadding=\"4\" width=\"100%\" border=\"0\"> ";

    $html_orders .= "                                                    <TBODY> ";

    $html_orders .= "                                                      <TR> ";

    $html_orders .= "                                                        <TD class=\"tableau_delay\"> ";

    $html_orders .= "        <B> $EMAIL_TEXT_CONTACT_SERVICE_CLIENT_SHEET3 </B> ";

    $html_orders .= "              </TD> ";

    $html_orders .= "                                                      </TR> ";

    $html_orders .= "                                                      <TR> ";

    $html_orders .= "                                                        <TD class=\"tableau_delay_content\" height=75>";

    $html_orders .= "        $EMAIL_TEXT_CONTACT_SERVICE_CLIENT_SHEET_CONTENT3 ";

    $html_orders .= "       </TD> ";

    $html_orders .= "                                                     </TR> ";

    $html_orders .= "                                                   </TBODY> ";

    $html_orders .= "                                                  </TABLE>";

    $html_orders .= "                                                </TD> ";

    $html_orders .= "                                              </TR> ";

    $html_orders .= "                                              <TR> ";

    $html_orders .= "                                                <TD vAlign=\"top\" class=\"tableau_delay\"  colSpan=\"3\"> ";

    $html_orders .= "                                                 <B> $EMAIL_TEXT_CONTACT</B>";

    $html_orders .= "                                                </TD> ";

    $html_orders .= "                                              </TR> ";

    $html_orders .= "                                              <TR> ";

    $html_orders .= "                                                <TD vAlign=\"top\" colSpan=\"3\"> ";

    $html_orders .= "      <FONT face=\"Arial\"  color=\"black\" size=\"1\">";

    $html_orders .= "       $EMAIL_TEXT_CONTACT_CONTENT ";

    $html_orders .= "      </FONT>";

    $html_orders .= "             </TD> ";

    $html_orders .= "                                              </TR>";

    $html_orders .= "                                              <TR>";

    $html_orders .= "                                                <TD vAlign=\"top\" colSpan=\"3\">";

    $html_orders .= "      <div align=\"right\">";

    $html_orders .= "      <a href=\"  HTTP_SERVER . DIR_WS_CATALOG . '/contact_us.php'\"> $EMAIL_IMAGE_SVC </a>";

    $html_orders .= "      </div> ";

    $html_orders .= "      </TD>";

    $html_orders .= "                                              </TR> ";

    $html_orders .= "                                            </TBODY> ";

    $html_orders .= "                                          </TABLE> ";

    $html_orders .= "                                           <div align=\"right\"><BR>";

    $html_orders .= "                                          </div>";

    $html_orders .= "                                        </TD> ";

    $html_orders .= "                                      </TR> ";

    $html_orders .= "                                    </TBODY> ";

    $html_orders .= "                                  </TABLE> ";

    $html_orders .= "                                  <FONT face=\"Arial,Helvetica,Geneva,Swiss,SunSans-Regular\" size=\"1\">";

    $html_orders .= "                                   $EMAIL_TEXT_NOTE </FONT>";

    $html_orders .= "    </TD> ";

    $html_orders .= "                              </TR> ";

    $html_orders .= "                              <TR height=25> ";

    $html_orders .= "                                <TD vAlign=bottom align=\"right\" height=\"25\"><FONT color=#003399 size=\"2\"><B><U></U></B> </FONT></TD> ";

    $html_orders .= "                              </TR> ";

    $html_orders .= "                            </TBODY> ";

    $html_orders .= "                          </TABLE> ";

    $html_orders .= "                          <TABLE  cellSpacing=\"0\" cellPadding=2   width=\"100%\"  border=\"1\"> ";

    $html_orders .= "                            <TBODY> ";

    $html_orders .= "                              <TR> ";

    $html_orders .= "                                <TD vAlign=\"top\" align=\"middle\" class=\"tableau_texte_fin\" colSpan=\"3\">";

    $html_orders .= "      $EMAIL_TEXT_NOTE1 ";

    $html_orders .= "    </TD> ";

    $html_orders .= "                              </TR> ";

    $html_orders .= "                            </TBODY> ";

    $html_orders .= "                          </TABLE> ";

    $html_orders .= "                          <STRONG><U><FONT color=#003399 size=\"2\"> ";

    $html_orders .= "      

  6. Adam, you are right. I have a table linked to the products table that has all the cogs info. I will look at the php code and see if I can add the queries that export the cost of the item in the qiff file.

     

    If you can put this feature in the contribution, that would be great. Or an option to select the table where this info is found. It is easier to upload them to OSC using sql databases than QB.

     

    Thanks

    Moneer

  7. Adam, thanks for the fast reply and your help.

     

    You are right, I did import all the products in QB through QBI but the reason I was asking about importing the COGS is that I all ready have them matched up throught linked tables. If I was going to that to each product, then it would take serveral month.

     

    I will try to look for a way or a tool to quickly match up products and enter bulk information at once.

     

    As for the error tha I am getting, I will check your suggestion and post the results of the findings.

     

    Thank you

    Moneer

  8. I also have another question that I forgot to ask on the previous post.

     

    How do I set it so that it imports the cost of the items in the inventory. Is there a specific table that the contribution makes that I need to enter the costs in so that it imports them or can I just direct it to import them from any table that I have custom made?

     

    Thanks

    Moneer

  9. I am getting the followin error when I try to import my order.iif

     

    "The Transaction is not in balance. Make sure the amounts in the detail are on the form fro this transaction equal the amount at the top of the form"

     

    Why is this happening and how can I fix this?

     

    Thanks

    Moneer

  10. I have installed this contribution a while ago and it has been working fine.

     

    I have several questions or suggestions.

     

    Is there a way to import all the previous sales that have been made previous to installing the contribution?

     

    Can the contribution support importing the cost of the item sold if I direct it to the proper column? what part of the code would I have to edit?

     

    Thanks

    Moneer

  11. I have been having a problem with the User Tracking Contribution.

     

    For some reason, the visitor is given a new session id whenever they enter a new page. So when I go to the user tracking page, it doesn't group the same user activity together.

     

    How do I get it so that the visitior can have the same id. Or at least so that the contnribution to group them based on ip and not on session id?

     

    Thanks

    Moneer

  12. This is a great contribution. Thanks

     

    Is there any way to be able to configure the contribution to use more than one tracking number. THe reason for this is may be split orderes, backordered items.

     

    I have playing around with it, but I can't seem to get alot of sucess.

     

     

    THanks

    Moneer

  13. I have made all the changes that I were said in the fourm. Bu now the menu is now showing. I get an error on the index.php pge "invalid argument" Here is the source for index.php

    Thanks for the help.

     

    index.php

     

    <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">

    <html dir="LTR" lang="en">

    <head>

    <script LANGUAGE="JavaScript1.2" SRC="includes/menu_animation.js"></SCRIPT>

    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

    <title>Mesztek.com</title><base href="http://moneer/">

    <link rel="stylesheet" type="text/css" href="stylesheet.css">

    </head>

    <body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">

     

    <!-- header //-->

    <table width="970" border="1" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">

         

        <tr>

          <td bgcolor="#FFFFFF">

    <table border="0" width="100%" cellspacing="0" cellpadding="0">

     <tr>

       <td valign="middle"><a href="http://moneer/index.php?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><img'>http://moneer/index.php?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><img src="images/oscommerce.gif" border="0" alt="Mesztek.com" title=" Mesztek.com " width="500" height="75"></a></td>

       <td align="right" class="firstNavigation" ><a href="http://moneer/account.php?osCsid=8a40fe9583b63e83ffc3c51b7b24526a" class="firstNavigation">My Account</a>  |  <a href="http://moneer/shopping_cart.php?osCsid=8a40fe9583b63e83ffc3c51b7b24526a" class="firstNavigation">Cart Contents</a>  |  <a href="http://moneer/checkout_shipping.php?osCsid=8a40fe9583b63e83ffc3c51b7b24526a" class="firstNavigation">Checkout</a>   

    <br>

      <form name="quick_find" method="get" action="http://moneer/advanced_search_result.php"><input type="hidden" name="osCsid" value="8a40fe9583b63e83ffc3c51b7b24526a"><input type="text" name="keywords" onFocus=this.value="" size="15" class="inputbox" maxlength="30" value="Enter Search here"> <input type="submit" class="search" value="Go"><br><a href="http://moneer/advanced_search.php?osCsid=8a40fe9583b63e83ffc3c51b7b24526a">Advanced Search<input type="hidden" name="search_in_description" value="1"></a></form>

    </td>

     </tr>

    </table>

     

    <table border="0" width="100%" cellspacing="0" cellpadding="0">

         <td align="right" valign="bottom" >

          <!-- tab menu //--><table class="BODY"  border="0" cellspacing="0" cellpadding="0"><tr></tr></table><!-- menu_eof //-->       </td>

    </table>

     

    <table border="0" width="100%" cellspacing="0" cellpadding="1">

     <tr class="headerNavigation">

       <td class="headerNavigation">  <a href="http://moneer" class="headerNavigation"></a> » <a href="http://moneer/index.php?osCsid=8a40fe9583b63e83ffc3c51b7b24526a" class="headerNavigation">Catalog</a></td>

       <td align="right" class="headerNavigation"><a href="http://moneer/index.php?osCsid=8a40fe9583b63e83ffc3c51b7b24526a" class="headerNavigation">Home</a>  |  <a href="http://moneer/manall.php?osCsid=8a40fe9583b63e83ffc3c51b7b24526a" class="headerNavigation">Brands</a>  |  <a href="http://moneer/rebate.php?osCsid=8a40fe9583b63e83ffc3c51b7b24526a" class="headerNavigation">Rebates</a>  | <a href="http://moneer/contact_us.php?osCsid=8a40fe9583b63e83ffc3c51b7b24526a" class="headerNavigation">Contact Us</a>   </td>

     </tr>

    </table>

    <!-- header_eof //-->

     

    <!-- body //-->

    <table border="0" width="100%" cellspacing="3" cellpadding="3">

     <tr>

       <td width="125" valign="top"><table border="0" width="125" cellspacing="0" cellpadding="2">

    <!-- left_navigation //-->

    <!-- coolMenu //-->

     

    <!-- copyright 2003 Andreas Kothe - www.oddbyte.de // -->

     

      <TR>

        <TD>

     

    <table border="0" width="100%" cellspacing="0" cellpadding="0">

     <tr>

       <td><table cellspacing="0" cellpadding="0" border="0"><tr><td><img src="images/infobox/top_left.jpg"></td><td class="newinfobox_top" valign="middle" align="center" width="100%">coolMenu  </td><td><img src="images/infobox/top_right.jpg"></td></tr><tr><td class="newinfobox_left"></td><td bgcolor = rgb(233,229,230)><table border="0" width="100%" cellspacing="0" cellpadding="0">

     <tr>

       <td><img src="images/pixel_trans.gif" border="0" alt="" width="1" height="1"></td>

     </tr>

     <tr>

       <td class="boxText"><ilayer id="tlayerm"><div id="topm"><img src="images/trans.gif" width="125" height="781.5"></div></ilayer></td>

     </tr>

    </table>

    </td><td class="newinfobox_right"></td></tr><tr><td><img src="images/infobox/bottom_left.jpg"></td><td class="newinfobox_bottom"></td><td><img src="images/infobox/bottom_right.jpg"></td></tr></table></td>

     </tr>

    </table>

        </TD>

      </TR>

     

    <!-- coolMenu_eof //-->

    <!-- left_navigation_eof //-->

       </table></td>

    <!-- body_text //-->

       <td width="100%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="0">

         <tr>

           <td><table border="0" width="100%" cellspacing="0" cellpadding="0">

             <tr>

               <td class="pageHeading">Welcome to Mesztek</td>

               <td class="pageHeading" align="right"><img src="images/table_background_default.gif" border="0" alt="Welcome to Mesztek" title=" Welcome to Mesztek " width="57" height="57"></td>

             </tr>

           </table></td>

         </tr>

         <tr>

           <td><img src="images/pixel_trans.gif" border="0" alt="" width="10" height="10"></td>

         </tr>

         <tr>

           <td><table border="0" width="100%" cellspacing="0" cellpadding="0">

             <tr>

               <td class="main">Welcome <span class="greetUser">Guest!</span> Would you like to <a href="http://moneer/login.php?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><u>log yourself in</u></a>? Or would you prefer to <a href="http://moneer/create_account.php?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><u>create an account</u></a>?</td>

             </tr>

             <tr>

               <td><img src="images/pixel_trans.gif" border="0" alt="" width="10" height="10"></td>

             </tr>

       <tr>

               <td class="main">Welcome to Mesztek.com. We have a wide selection of items as well as new products being added daily.Please remember to check out the <FONT color=blue size=3><A href="http://www.mesztek.com/specials.php">Specials here. </A></FONT></td>

             </tr>

             <tr>

               <td><img src="images/pixel_trans.gif" border="0" alt="" width="10" height="10"></td>

             </tr>

             <tr>

               <td><!-- new_products //-->

     

     

    <table width="100%" border="0" cellspacing="0" cellpadding="0"

    class="greetinguser">

    <tr>

    <td>

    <table width="100%" border="0" cellspacing="3" cellpadding="3">

    <tr>

    <td>

    <table width="100%" border="0" cellspacing="1" cellpadding="1"

    class="greetinguserwhite">

    <tr>

    <td><font size="2"><font

    color="#000000"><center><b>New Products For November</center></font></b></td>

    </tr>

    </table>

    </td>

    </tr>

    </table>

    </td>

    </tr>

    <tr>

    <td> <table width="100%" border="0" cellspacing="3" cellpadding="3">

    <tr>

    <td width="50%" valign="top"><table width="100%" height="100%"

    border="0" cellspacing="1" cellpadding="1" class="greetinguserwhite">

    <tr>

    <td colspan="2">

     

    <table width="100%" border="0" cellspacing="0" cellpadding="0">

    <tr>

    <td class="ourtexthere" width="90%"><b><a href="http://moneer/product_info.php/products_id/54637?osCsid=8a40fe9583b63e83ffc3c51b7b24526a">8mm Dry Video Head Cleaner</a></b></td>

    <td class="ourtexthere" align="right" width="10%"><font

    color="red"><b>$3.39</b></font></td>

    </tr>

    </table>

     

    </td>

    </tr>

     

    <tr>

    <td colspan="2"></td>

    </tr>

    <tr>

    <td class="ourtexthere"><a href="http://moneer/product_info.php/products_id/54637?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><img src="images/prod/MXLVP203.jpg" border="0" alt="8mm Dry Video Head Cleaner" title=" 8mm Dry Video Head Cleaner " width="55.333333333333" height="100"></a></td>

    <td class="ourtexthere"><li> Improves sight & sound performance <li> Non-abrasive <li> Easy to use <li> Full path cleaner <li> Works on Hi8 & Digital II<a href="http://moneer/product_info.php/products_id/54637?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><font color="red">...Read

    More</font></a></td>

    </tr>

     

     

     

     

     

     

    <tr>

    <td colspan="2"><img src="images/pixel_trans.gif" border="0" alt="" width="10" height="10"></td>

    </tr>

    </table></td> <td width="50%" valign="top"><table width="100%" height="100%"

    border="0" cellspacing="1" cellpadding="1" class="greetinguserwhite">

    <tr>

    <td colspan="2">

     

    <table width="100%" border="0" cellspacing="0" cellpadding="0">

    <tr>

    <td class="ourtexthere" width="90%"><b><a href="http://moneer/product_info.php/products_id/12738?osCsid=8a40fe9583b63e83ffc3c51b7b24526a">ISO 400 35mm Film, 2 Pack</a></b></td>

    <td class="ourtexthere" align="right" width="10%"><font

    color="red"><b>$2.99</b></font></td>

    </tr>

    </table>

     

    </td>

    </tr>

     

     

     

    <tr>

    <td colspan="2"></td>

    </tr>

    <tr>

    <td class="ourtexthere"><a href="http://moneer/product_info.php/products_id/12738?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><img src="images/prod/BB48021.jpg" border="0" alt="ISO 400 35mm Film, 2 Pack" title=" ISO 400 35mm Film, 2 Pack " width="120" height="100"></a></td>

    <td class="ourtexthere"><li> Offers super-bright color reproduction & razor sharp images <li> Utilizes Centuria Crystal, Coupler and DIR Coupler emulsion technologies for well rounded performanc<a href="http://moneer/product_info.php/products_id/12738?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><font color="red">...Read

    More</font></a></td>

    </tr>

     

    <tr>

    <td colspan="2"><img src="images/pixel_trans.gif" border="0" alt="" width="10" height="10"></td>

    </tr>

    </table></td>

    </tr>

    </table> <table width="100%" border="0" cellspacing="3" cellpadding="3">

    <tr>

    <td width="50%" valign="top"><table width="100%" height="100%"

    border="0" cellspacing="1" cellpadding="1" class="greetinguserwhite">

    <tr>

    <td colspan="2">

     

    <table width="100%" border="0" cellspacing="0" cellpadding="0">

    <tr>

    <td class="ourtexthere" width="90%"><b><a href="http://moneer/product_info.php/products_id/13955?osCsid=8a40fe9583b63e83ffc3c51b7b24526a">Digital 1.0 Farad Stiffening Capacitor</a></b></td>

    <td class="ourtexthere" align="right" width="10%"><font

    color="red"><b>$67.99</b></font></td>

    </tr>

    </table>

     

    </td>

    </tr>

     

    <tr>

    <td colspan="2"></td>

    </tr>

    <tr>

    <td class="ourtexthere"><a href="http://moneer/product_info.php/products_id/13955?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><img src="images/prod/CAP-20DB.jpg" border="0" alt="Digital 1.0 Farad Stiffening Capacitor" title=" Digital 1.0 Farad Stiffening Capacitor " width="120" height="100"></a></td>

    <td class="ourtexthere"><li> Super fast and highly effective voltage stiffening <li> High-performance current flow through chrome post design <li> Digital volt meter with blue status LED on CAP2<a href="http://moneer/product_info.php/products_id/13955?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><font color="red">...Read

    More</font></a></td>

    </tr>

     

     

     

     

     

     

    <tr>

    <td colspan="2"><img src="images/pixel_trans.gif" border="0" alt="" width="10" height="10"></td>

    </tr>

    </table></td> <td width="50%" valign="top"><table width="100%" height="100%"

    border="0" cellspacing="1" cellpadding="1" class="greetinguserwhite">

    <tr>

    <td colspan="2">

     

    <table width="100%" border="0" cellspacing="0" cellpadding="0">

    <tr>

    <td class="ourtexthere" width="90%"><b><a href="http://moneer/product_info.php/products_id/13553?osCsid=8a40fe9583b63e83ffc3c51b7b24526a">100? Spooled Speaker Wire-16 Guage</a></b></td>

    <td class="ourtexthere" align="right" width="10%"><font

    color="red"><b>$7.49</b></font></td>

    </tr>

    </table>

     

    </td>

    </tr>

     

     

     

    <tr>

    <td colspan="2"></td>

    </tr>

    <tr>

    <td class="ourtexthere"><a href="http://moneer/product_info.php/products_id/13553?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><img src="images/prod/M62107.jpg" border="0" alt="100? Spooled Speaker Wire-16 Guage" title=" 100? Spooled Speaker Wire-16 Guage " width="120" height="100"></a></td>

    <td class="ourtexthere"><li> 100' Spools oxygen free copper <a href="http://moneer/product_info.php/products_id/13553?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><font color="red">...Read

    More</font></a></td>

    </tr>

     

    <tr>

    <td colspan="2"><img src="images/pixel_trans.gif" border="0" alt="" width="10" height="10"></td>

    </tr>

    </table></td>

    </tr>

    </table> <table width="100%" border="0" cellspacing="3" cellpadding="3">

    <tr>

    <td width="50%" valign="top"><table width="100%" height="100%"

    border="0" cellspacing="1" cellpadding="1" class="greetinguserwhite">

    <tr>

    <td colspan="2">

     

    <table width="100%" border="0" cellspacing="0" cellpadding="0">

    <tr>

    <td class="ourtexthere" width="90%"><b><a href="http://moneer/product_info.php/products_id/56922?osCsid=8a40fe9583b63e83ffc3c51b7b24526a">Armband Digital Tuning Radio</a></b></td>

    <td class="ourtexthere" align="right" width="10%"><font

    color="red"><b>$7.98</b></font></td>

    </tr>

    </table>

     

    </td>

    </tr>

     

    <tr>

    <td colspan="2"></td>

    </tr>

    <tr>

    <td class="ourtexthere"><a href="http://moneer/product_info.php/products_id/56922?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><img src="images/prod/SAK11056.jpg" border="0" alt="Armband Digital Tuning Radio" title=" Armband Digital Tuning Radio " width="92" height="100"></a></td>

    <td class="ourtexthere"><li> High-sensitivity AM/FM radio<li> Clock with alarm function<li> Digital tuning<li> Ultra-slim design<li> Includes lightweight stereo earphones<li> Uses 2 AAA bat<a href="http://moneer/product_info.php/products_id/56922?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><font color="red">...Read

    More</font></a></td>

    </tr>

     

     

     

     

     

     

    <tr>

    <td colspan="2"><img src="images/pixel_trans.gif" border="0" alt="" width="10" height="10"></td>

    </tr>

    </table></td> <td width="50%" valign="top"><table width="100%" height="100%"

    border="0" cellspacing="1" cellpadding="1" class="greetinguserwhite">

    <tr>

    <td colspan="2">

     

    <table width="100%" border="0" cellspacing="0" cellpadding="0">

    <tr>

    <td class="ourtexthere" width="90%"><b><a href="http://moneer/product_info.php/products_id/18931?osCsid=8a40fe9583b63e83ffc3c51b7b24526a">Heavy-Duty Tripod with Carrying Handle</a></b></td>

    <td class="ourtexthere" align="right" width="10%"><font

    color="red"><b>$21.49</b></font></td>

    </tr>

    </table>

     

    </td>

    </tr>

     

     

     

    <tr>

    <td colspan="2"></td>

    </tr>

    <tr>

    <td class="ourtexthere"><a href="http://moneer/product_info.php/products_id/18931?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><img src="images/prod/MK-4.jpg" border="0" alt="Heavy-Duty Tripod with Carrying Handle" title=" Heavy-Duty Tripod with Carrying Handle " width="120" height="100"></a></td>

    <td class="ourtexthere"><li> 3-way fluid pan head with removable quick shoe <li> Geared elevator and bubble level <li> Radial leg brace with lock and carrying handle <li> 3-section, 26mm triangu<a href="http://moneer/product_info.php/products_id/18931?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><font color="red">...Read

    More</font></a></td>

    </tr>

     

    <tr>

    <td colspan="2"><img src="images/pixel_trans.gif" border="0" alt="" width="10" height="10"></td>

    </tr>

    </table></td>

    </tr>

    </table> <table width="100%" border="0" cellspacing="3" cellpadding="3">

    <tr>

    <td width="50%" valign="top"><table width="100%" height="100%"

    border="0" cellspacing="1" cellpadding="1" class="greetinguserwhite">

    <tr>

    <td colspan="2">

     

    <table width="100%" border="0" cellspacing="0" cellpadding="0">

    <tr>

    <td class="ourtexthere" width="90%"><b><a href="http://moneer/product_info.php/products_id/14738?osCsid=8a40fe9583b63e83ffc3c51b7b24526a">Universal Adapter for PLASMA-CL</a></b></td>

    <td class="ourtexthere" align="right" width="10%"><font

    color="red"><b>$79.79</b></font></td>

    </tr>

    </table>

     

    </td>

    </tr>

     

    <tr>

    <td colspan="2"></td>

    </tr>

    <tr>

    <td class="ourtexthere"><a href="http://moneer/product_info.php/products_id/14738?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><img src="images/prod/PLAD-UM1.jpg" border="0" alt="Universal Adapter for PLASMA-CL" title=" Universal Adapter for PLASMA-CL " width="120" height="100"></a></td>

    <td class="ourtexthere"><li> Required by PLASMA-CL <a href="http://moneer/product_info.php/products_id/14738?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><font color="red">...Read

    More</font></a></td>

    </tr>

     

     

     

     

     

     

    <tr>

    <td colspan="2"><img src="images/pixel_trans.gif" border="0" alt="" width="10" height="10"></td>

    </tr>

    </table></td> <td width="50%" valign="top"><table width="100%" height="100%"

    border="0" cellspacing="1" cellpadding="1" class="greetinguserwhite">

    <tr>

    <td colspan="2">

     

    <table width="100%" border="0" cellspacing="0" cellpadding="0">

    <tr>

    <td class="ourtexthere" width="90%"><b><a href="http://moneer/product_info.php/products_id/58752?osCsid=8a40fe9583b63e83ffc3c51b7b24526a">SoundGear Satellite Single Speaker Mount - Silver</a></b></td>

    <td class="ourtexthere" align="right" width="10%"><font

    color="red"><b>$9.49</b></font></td>

    </tr>

    </table>

     

    </td>

    </tr>

     

     

     

    <tr>

    <td colspan="2"></td>

    </tr>

    <tr>

    <td class="ourtexthere"><a href="http://moneer/product_info.php/products_id/58752?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><img src="images/prod/VPTSATSS.jpg" border="0" alt="SoundGear Satellite Single Speaker Mount - Silver" title=" SoundGear Satellite Single Speaker Mount - Silver " width="60.333333333333" height="100"></a></td>

    <td class="ourtexthere"><li> 4-axis, tilt & rotational adjustments<li> Accommodates speakers up to 8 lbs<li> Works with keyhole or single hole design speakers & Bose? speakers <li> Ceiling ex<a href="http://moneer/product_info.php/products_id/58752?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><font color="red">...Read

    More</font></a></td>

    </tr>

     

    <tr>

    <td colspan="2"><img src="images/pixel_trans.gif" border="0" alt="" width="10" height="10"></td>

    </tr>

    </table></td>

    </tr>

    </table> <table width="100%" border="0" cellspacing="3" cellpadding="3">

    <tr>

    <td width="50%" valign="top"><table width="100%" height="100%"

    border="0" cellspacing="1" cellpadding="1" class="greetinguserwhite">

    <tr>

    <td colspan="2">

     

    <table width="100%" border="0" cellspacing="0" cellpadding="0">

    <tr>

    <td class="ourtexthere" width="90%"><b><a href="http://moneer/product_info.php/products_id/11542?osCsid=8a40fe9583b63e83ffc3c51b7b24526a">Dual Sensor Isolator Interface Device</a></b></td>

    <td class="ourtexthere" align="right" width="10%"><font

    color="red"><b>$2.49</b></font></td>

    </tr>

    </table>

     

    </td>

    </tr>

     

    <tr>

    <td colspan="2"></td>

    </tr>

    <tr>

    <td class="ourtexthere"><a href="http://moneer/product_info.php/products_id/11542?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><img src="images/prod/CS-92GSI.jpg" border="0" alt="Dual Sensor Isolator Interface Device" title=" Dual Sensor Isolator Interface Device " width="120" height="100"></a></td>

    <td class="ourtexthere"><li> Interfaces and isolates CS-97G and CS-95DFR into 1 connector <a href="http://moneer/product_info.php/products_id/11542?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><font color="red">...Read

    More</font></a></td>

    </tr>

     

     

     

     

     

     

    <tr>

    <td colspan="2"><img src="images/pixel_trans.gif" border="0" alt="" width="10" height="10"></td>

    </tr>

    </table></td> <td width="50%" valign="top"><table width="100%" height="100%"

    border="0" cellspacing="1" cellpadding="1" class="greetinguserwhite">

    <tr>

    <td colspan="2">

     

    <table width="100%" border="0" cellspacing="0" cellpadding="0">

    <tr>

    <td class="ourtexthere" width="90%"><b><a href="http://moneer/product_info.php/products_id/15623?osCsid=8a40fe9583b63e83ffc3c51b7b24526a">Wireless Home Network</a></b></td>

    <td class="ourtexthere" align="right" width="10%"><font

    color="red"><b>$124.99</b></font></td>

    </tr>

    </table>

     

    </td>

    </tr>

     

     

     

    <tr>

    <td colspan="2"></td>

    </tr>

    <tr>

    <td class="ourtexthere"><a href="http://moneer/product_info.php/products_id/15623?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><img src="images/prod/QX-202.jpg" border="0" alt="Wireless Home Network" title=" Wireless Home Network " width="120" height="100"></a></td>

    <td class="ourtexthere"><li> Twin pack <li> Uses existing home AC wiring to pass digital signals between Ethernet enabled devices <li> Allows sharing of a single- high-speed internet modem<li> 1<a href="http://moneer/product_info.php/products_id/15623?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><font color="red">...Read

    More</font></a></td>

    </tr>

     

    <tr>

    <td colspan="2"><img src="images/pixel_trans.gif" border="0" alt="" width="10" height="10"></td>

    </tr>

    </table></td>

    </tr>

    </table></td>

    </tr>

    </table><!-- new_products_eof //--></td>

             </tr>

           </table></td>

         </tr>

       </table></td>

    <!-- body_text_eof //-->

       <td width="125" valign="top"><table border="0" width="125" cellspacing="0" cellpadding="2">

    <!-- right_navigation //-->

    <!-- shopping_cart //-->

             <tr>

               <td>

    <table border="0" width="100%" cellspacing="0" cellpadding="0">

     <tr>

       <td><table cellspacing="0" cellpadding="0" border="0"><tr><td><img src="images/infobox/top_left.jpg"></td><td class="newinfobox_top" valign="middle" align="center" width="100%">Shopping Cart  <a href="http://moneer/shopping_cart.php?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><img src="images/infobox/arrow_right.gif" border="0" alt="more" title=" more " width="11" height="14"></a></td><td><img src="images/infobox/top_right.jpg"></td></tr><tr><td class="newinfobox_left"></td><td bgcolor = rgb(233,229,230)><table border="0" width="100%" cellspacing="0" cellpadding="0">

     <tr>

       <td><img src="images/pixel_trans.gif" border="0" alt="" width="1" height="1"></td>

     </tr>

     <tr>

       <td class="boxText">0 items</td>

     </tr>

    </table>

    </td><td class="newinfobox_right"></td></tr><tr><td><img src="images/infobox/bottom_left.jpg"></td><td class="newinfobox_bottom"></td><td><img src="images/infobox/bottom_right.jpg"></td></tr></table></td>

     </tr>

    </table>

               </td>

             </tr>

    <!-- shopping_cart_eof //-->

    <!-- loginbox //-->

             <tr>

               <td>

    <table border="0" width="100%" cellspacing="0" cellpadding="0">

     <tr>

       <td><table cellspacing="0" cellpadding="0" border="0"><tr><td><img src="images/infobox/top_left.jpg"></td><td class="newinfobox_top" valign="middle" align="center" width="100%">Login Here  </td><td><img src="images/infobox/top_right.jpg"></td></tr><tr><td class="newinfobox_left"></td><td bgcolor = rgb(233,229,230)><table border="0" width="100%" cellspacing="0" cellpadding="0">

     <tr>

       <td><img src="images/pixel_trans.gif" border="0" alt="" width="1" height="1"></td>

     </tr>

     <tr>

       <td align="center" class="boxText">

               <table border="0" width="100%" cellspacing="0" cellpadding="0">

               <form name="login" method="post" action="http://moneer/login.php/action/process?osCsid=8a40fe9583b63e83ffc3c51b7b24526a">

                 <tr>

                   <td align="left" class="main">

                     E-Mail address:

                   </td>

                 </tr>

                 <tr>

                   <td align="left" class="main">

                     <input type="text" name="email_address" maxlength="96" size="20" value="">

                   </td>

                 </tr>

                 <tr>

                   <td align="left" class="main">

                     Password:

                   </td>

                 </tr>

                 <tr>

                   <td align="left" class="main">

                     <input type="password" name="password" maxlength="40" size="20" value=""

                   </td>

                 </tr>

                 <tr>

                   <td class="main" align="center">

                     <input type="image" src="includes/languages/english/images/buttons/button_login.gif" border="0" alt="Sign In" title=" Sign In " SSL>

                   </td>

                 </tr>

               </form>

               </table>

                 </td>

     </tr>

    </table>

    </td><td class="newinfobox_right"></td></tr><tr><td><img src="images/infobox/bottom_left.jpg"></td><td class="newinfobox_bottom"></td><td><img src="images/infobox/bottom_right.jpg"></td></tr></table></td>

     </tr>

    </table>

               </td>

             </tr>

    <!-- loginbox_eof //-->

    <!-- whats_new //-->

             <tr>

               <td>

    <table border="0" width="100%" cellspacing="0" cellpadding="0">

     <tr>

       <td><table cellspacing="0" cellpadding="0" border="0"><tr><td><img src="images/infobox/top_left.jpg"></td><td class="newinfobox_top" valign="middle" align="center" width="100%">What's New?  <a href="http://moneer/products_new.php?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><img src="images/infobox/arrow_right.gif" border="0" alt="more" title=" more " width="11" height="14"></a></td><td><img src="images/infobox/top_right.jpg"></td></tr><tr><td class="newinfobox_left"></td><td bgcolor = rgb(233,229,230)><table border="0" width="100%" cellspacing="0" cellpadding="0">

     <tr>

       <td><img src="images/pixel_trans.gif" border="0" alt="" width="1" height="1"></td>

     </tr>

     <tr>

       <td align="center" class="boxText"><a href="http://moneer/product_info.php/whatsnew/Channel-Modulator/products_id/59017?osCsid=8a40fe9583b63e83ffc3c51b7b24526a"><img src="images/prod/ZENZEV204.jpg" border="0" alt="Channel Modulator" title=" Channel Modulator " width="84.333333333333" height="100"></a><br><a href="http://moneer/product_info.php/whatsnew/Channel-Modulator/products_id/59017?osCsid=8a40fe9583b63e83ffc3c51b7b24526a">Channel Modulator</a><br>$48.98<br><br></td>

     </tr>

    </table>

    </td><td class="newinfobox_right"></td></tr><tr><td><img src="images/infobox/bottom_left.jpg"></td><td class="newinfobox_bottom"></td><td><img src="images/infobox/bottom_right.jpg"></td></tr></table></td>

     </tr>

    </table>

     

               </td>

             </tr>

    <!-- whats_new_eof //-->

    <!-- best_sellers //-->

             <tr>

               <td>

    <table border="0" width="100%" cellspacing="0" cellpadding="0">

     <tr>

       <td><table cellspacing="0" cellpadding="0" border="0"><tr><td><img src="images/infobox/top_left.jpg"></td><td class="newinfobox_top" valign="middle" align="center" width="100%">Bestsellers  </td><td><img src="images/infobox/top_right.jpg"></td></tr><tr><td class="newinfobox_left"></td><td bgcolor = rgb(233,229,230)><table border="0" width="100%" cellspacing="0" cellpadding="0">

     <tr>

       <td><img src="images/pixel_trans.gif" border="0" alt="" width="1" height="1"></td>

     </tr>

     <tr>

       <td class="boxText"><table border="0" width="100%" cellspacing="0" cellpadding="1"><tr><td class="infoBoxContents" valign="top">01.</td><td class="infoBoxContents"><a href="http://moneer/product_info.php/products_id/59015?osCsid=8a40fe9583b63e83ffc3c51b7b24526a">Color Home Security Camera</a></td></tr></table></td>

     </tr>

    </table>

    </td><td class="newinfobox_right"></td></tr><tr><td><img src="images/infobox/bottom_left.jpg"></td><td class="newinfobox_bottom"></td><td><img src="images/infobox/bottom_right.jpg"></td></tr></table></td>

     </tr>

    </table>

               </td>

             </tr>

    <!-- best_sellers_eof //-->

    <!-- right_navigation_eof //-->

       </table></td>

     </tr>

    </table>

    <!-- body_eof //-->

     

    <!-- footer //-->

     

    <table border="0" width="100%" cellspacing="0" cellpadding="1">

     <tr class="footer">

       <td class="footer">??Saturday 06 March, 2004??

    </td>

      <td align="right" class="footer">??</td>

    </tr>

    <table border="0" width="100%" cellspacing="0" cellpadding="4">

    <tr class="headerNavigation">

    <td align="center" class="headerNavigation"><a href="http://moneer/privacy.php?osCsid=8a40fe9583b63e83ffc3c51b7b24526a" class="headerNavigation">Privacy Notice</a> ?|? <a href="http://moneer/conditions.php?osCsid=8a40fe9583b63e83ffc3c51b7b24526a" class="headerNavigation">Conditions of Use</a> ?|? <a href="http://moneer/shipping.php?osCsid=8a40fe9583b63e83ffc3c51b7b24526a" class="headerNavigation">Shipping & Returns</a> ?|? <a href="http://moneer/allprods.php?osCsid=8a40fe9583b63e83ffc3c51b7b24526a" class="headerNavigation">Catalog</a> ?|? <a href="http://moneer/contact_us.php?osCsid=8a40fe9583b63e83ffc3c51b7b24526a" class="headerNavigation">Contact Us</a> ?|? <a href="http://moneer/allprods.php?osCsid=8a40fe9583b63e83ffc3c51b7b24526a" class="headerNavigation">Catalog</a> ?|? <a href="allcategories.php" class="headerNavigation">Categories</a></td>

    </tr>

    </table></table>

    <table border="0" width="100%" cellspacing="0" cellpadding="0">

     <tr>

       <td align="center" class="smallText">

    Copyright © 2003 <a href="http://www.Mesztek.com" target="_blank">Mesztek.com</a><br>Content are property of their respective owners and Mesztek.com  

    </td>

     </tr>

    </table>

    </table>

    <table border="0" cellpadding="0" cellspacing="0" width="100%" >

     <tr>

       <td width="33%"> </td>

       <td width="33%">

       <img border="0" src="images/banners/fbtm.gif" ></td>

    <td width="34%">?</td>

     </tr>

    </table>

      </td>

    </tr>

    </table>

    <!-- coolMenu //-->

     

     

       <!--  Copyright 2002 www.dhtmlcentral.com  --  modified for PHP and osCommerce by Andreas Kothe - www.oddbyte.de -->

     

     <script>

     

     //Extra code to find position:

    function findPos(){

    if(bw.ns4){ //Netscape 4

    x = document.layers.tlayerm.pageX

    y = document.layers.tlayerm.pageY

    }else{ //other browsers

    x=0; y=0; var el,temp

    el = bw.ie4?document.all["topm"]:document.getElementById("topm");

    if(el.offsetParent){

    temp = el

    while(temp.offsetParent){ //Looping parent elements to get the offset of them as well

    temp=temp.offsetParent;

    x+=temp.offsetLeft

    y+=temp.offsetTop

    }

    }

    x+=el.offsetLeft

    y+=el.offsetTop

    }

    //Returning the x and y as an array

    return [x,y]

    }

     

    oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname

    pos = findPos()

    //Menu properties

    oCMenu.pxBetween=0

    //experiment with fromleft and fromtop - I use -2 and -7 but you can try something different and place the menu anywhere on the page

    oCMenu.fromLeft=pos[0]10

    oCMenu.fromTop=pos[0]125

    oCMenu.onresize="location.reload()"

    oCMenu.rows=0

    // etc.

     

     

     oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname

     

     //Menu properties

     oCMenu.pxBetween=0

    //  oCMenu.fromLeft=70

    //  oCMenu.fromTop=125

     oCMenu.rows=0

     oCMenu.menuPlacement="left"

     

     oCMenu.offlineRoot=""

     oCMenu.onlineRoot=""

     oCMenu.resizeCheck=1

     oCMenu.wait=200

     oCMenu.fillImg="cm_fill.gif"

     oCMenu.zIndex=0

     

     //Background bar properties

     oCMenu.useBar=1

     oCMenu.barWidth="menu"

     oCMenu.barHeight="menu"

     oCMenu.barClass="clBar"

     oCMenu.barX="menu"

     oCMenu.barY="menu"

     oCMenu.barBorderX=0

     oCMenu.barBorderY=0

     oCMenu.barBorderClass=""

     

     oCMenu.level[0]=new cm_makeLevel()

     oCMenu.level[0].width=156

     oCMenu.level[0].height=18

     oCMenu.level[0].regClass="clLevel0"

     oCMenu.level[0].overClass="clLevel0over"

     oCMenu.level[0].borderX=1

     oCMenu.level[0].borderY=1

     oCMenu.level[0].borderClass="clLevel0border"

     oCMenu.level[0].offsetX=0

     oCMenu.level[0].offsetY=0

     oCMenu.level[0].rows=0

     oCMenu.level[0].arrow="images/arrow.gif"

     oCMenu.level[0].arrowWidth=11

     oCMenu.level[0].arrowHeight=11

     oCMenu.level[0].align="right"

     oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Fade(duration=0.1)"

     

      oCMenu.level[1]=new cm_makeLevel()

      oCMenu.level[1].width=156

      oCMenu.level[1].height=14

      oCMenu.level[1].regClass="clLevel1"

      oCMenu.level[1].overClass="clLevel1over"

      oCMenu.level[1].borderX=1

      oCMenu.level[1].borderY=1

      oCMenu.level[1].align="right"

      oCMenu.level[1].offsetX=0

      oCMenu.level[1].offsetY=0

      oCMenu.level[1].borderClass="clLevel1border"

      oCMenu.level[1].align="right"

      oCMenu.level[1].filter="progid:DXImageTransform.Microsoft.Fade(duration=0.3)"

     

     

     oCMenu.makeMenu('top_1','','A/V Care','http://moneer/index.php/cPath/100?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_1_1','top_1','Canned Air','http://moneer/index.php/cPath/100_10350?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_1_2','top_1','Cassette','http://moneer/index.php/cPath/100_10390?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_1_3','top_1','CD/DVD','http://moneer/index.php/cPath/100_10460?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_1_4','top_1','Dat','http://moneer/index.php/cPath/100_10590?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_1_5','top_1','Hi-8 / 8Mm','http://moneer/index.php/cPath/100_10840?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_1_6','top_1','Media Storage Cases','http://moneer/index.php/cPath/100_11070?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_1_7','top_1','Mini-Disc','http://moneer/index.php/cPath/100_11120?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_1_8','top_1','Mini-DV','http://moneer/index.php/cPath/100_11140?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_1_9','top_1','Misc A/V Care','http://moneer/index.php/cPath/100_11170?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_1_10','top_1','Phono','http://moneer/index.php/cPath/100_11380?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_1_11','top_1','VHS','http://moneer/index.php/cPath/100_12010?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_1_12','top_1','VHS-C','http://moneer/index.php/cPath/100_12020?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('top_2','','Antennas','http://moneer/index.php/cPath/200?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_2_1','top_2','AM/FM','http://moneer/index.php/cPath/200_10070?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_2_2','top_2','Car','http://moneer/index.php/cPath/200_10360?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_2_3','top_2','CB','http://moneer/index.php/cPath/200_10410?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_2_4','top_2','Indoors','http://moneer/index.php/cPath/200_12192?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_2_5','top_2','Outdoor','http://moneer/index.php/cPath/200_12193?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_2_6','top_2','Televisions','http://moneer/index.php/cPath/200_11850?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('top_3','','Appliances','http://moneer/index.php/cPath/12194?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('top_4','','Batteries','http://moneer/index.php/cPath/300?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_4_1','top_4','Camcorder','http://moneer/index.php/cPath/300_10280?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_4_2','top_4','Lantern','http://moneer/index.php/cPath/300_10950?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_4_3','top_4','Photo','http://moneer/index.php/cPath/300_11390?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_4_4','top_4','Primary','http://moneer/index.php/cPath/300_11480?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_4_5','top_4','Radio Controlled','http://moneer/index.php/cPath/300_11500?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_4_6','top_4','Specialty','http://moneer/index.php/cPath/300_11670?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_4_7','top_4','Telephone','http://moneer/index.php/cPath/300_11820?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('top_5','','Binoculars/Vision','http://moneer/index.php/cPath/400?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_5_1','top_5','Binoculars','http://moneer/index.php/cPath/400_10230?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_5_2','top_5','Night Vision','http://moneer/index.php/cPath/400_11280?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_5_3','top_5','Spotting Scopes','http://moneer/index.php/cPath/400_11710?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('top_6','','Blank Media','http://moneer/index.php/cPath/500?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_6_1','top_6','Audio Tape','http://moneer/index.php/cPath/500_10170?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_6_2','top_6','CD','http://moneer/index.php/cPath/500_10430?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_6_3','top_6','Computer','http://moneer/index.php/cPath/500_10540?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_6_4','top_6','DVD','http://moneer/index.php/cPath/500_10660?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_6_5','top_6','Mini-Disc','http://moneer/index.php/cPath/500_11130?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_6_6','top_6','Video Tape','http://moneer/index.php/cPath/500_12050?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('top_7','','Cable Zone','http://moneer/index.php/cPath/600?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_7_1','top_7','Audio / Video','http://moneer/index.php/cPath/600_10120?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_7_2','top_7','Home Theater','http://moneer/index.php/cPath/600_10860?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('top_8','','Camcorders','http://moneer/index.php/cPath/700?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_8_1','top_8','Accessories','http://moneer/index.php/cPath/700_10010?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_8_2','top_8','Camcorder Batteries','http://moneer/index.php/cPath/700_10310?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_8_3','top_8','Camcorder Charges','http://moneer/index.php/cPath/700_10320?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_8_4','top_8','Camera Cases','http://moneer/index.php/cPath/700_10330?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_8_5','top_8','Firewire Recording','http://moneer/index.php/cPath/700_10720?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_8_6','top_8','Hi-8','http://moneer/index.php/cPath/700_10830?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_8_7','top_8','Mini-DV','http://moneer/index.php/cPath/700_11150?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_8_8','top_8','Post Production','http://moneer/index.php/cPath/700_11460?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_8_9','top_8','VHS-C','http://moneer/index.php/cPath/700_11780?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('top_9','','Car Alarms','http://moneer/index.php/cPath/800?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('top_10','','Cell Phones','http://moneer/index.php/cPath/900?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_10_1','top_10','Adapters','http://moneer/index.php/cPath/900_10060?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_10_2','top_10','Antennas','http://moneer/index.php/cPath/900_10110?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_10_3','top_10','Batteries','http://moneer/index.php/cPath/900_10200?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_10_4','top_10','Cases/Clips','http://moneer/index.php/cPath/900_10380?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_10_5','top_10','Chargers/Power','http://moneer/index.php/cPath/900_10500?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_10_6','top_10','Face Plates','http://moneer/index.php/cPath/900_10700?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_10_7','top_10','Headsets','http://moneer/index.php/cPath/900_10800?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('top_11','','Computers','http://moneer/index.php/cPath/1000?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_11_1','top_11','Accessories','http://moneer/index.php/cPath/1000_10020?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_11_2','top_11','Cd-Rom','http://moneer/index.php/cPath/1000_10470?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_11_3','top_11','Firewire Recording','http://moneer/index.php/cPath/1000_10730?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_11_4','top_11','Headsets','http://moneer/index.php/cPath/1000_10810?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_11_5','top_11','Laptops','http://moneer/index.php/cPath/1000_10970?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_11_6','top_11','Media Storage','http://moneer/index.php/cPath/1000_11060?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_11_7','top_11','Multimedia Speakers','http://moneer/index.php/cPath/1000_11250?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu('sub_11_8','top_11','Scan Converters','http://moneer/index.php/cPath/1000_11560?osCsid=8a40fe9583b63e83ffc3c51b7b24526a')

    oCMenu.makeMenu(

  14. sorry for not answering since I am the one that needs help. :blink:

     

    I am using it with it with centershop. I have in my header the following code:

     

       
        print ('<table width="790" border="0" align="center" cellpadding="0" cellspacing="2" bgcolor="#000000">
          
        <tr>
          <td bgcolor="#FFFFFF">');

     

     

    Thanks for the help.

  15. Thanks for you help. I have modified the code according to what you said. The category box is longer now but the menu is too wide and isn't dynamic to the page. When I resize the page, the menu moves out of the infobox.

     

    In includes/colum_left.php, i am using includes(coolmenu.php)

     

    Here is a screen shot

    pix.JPG

     

    Thanks for your help.

  16. Thanks for your help. I have been trying to modify the code but am getting no where.

     

     

    Includes/boxes/coolmenu.php

     

    <?php
    /* ------------------------------------------------
    
     coolMenu for osCommerce
     
     author:	Andreas Kothe 
     url:  http://www.oddbyte.de
    
    
     Released under the GNU General Public License
     
     ------------------------------------------------ 
    */
    
    ?>
    <!-- coolMenu //-->
    
    <!-- copyright 2003 Andreas Kothe - www.oddbyte.de // -->
    
      <TR>
        <TD>
    
    <?php
     $info_box_contents = array();
     $info_box_contents[] = array('align' => 'left',
             'text'  => 'coolMenu'
            );
     new infoBoxHeading($info_box_contents, false, false);
    
     $info_box_contents = array();
     if (MAX_MANUFACTURERS_LIST < 2) {
    $cat_choose = array(array('id' => '', 'text' => BOX_CATEGORIES_CHOOSE));
     } else {
    $cat_choose = '';
     }
    
    
    
     //the code below ajusts the height of the coolmenu dynamically according to the number of categories in the main menu
    $result=tep_db_query("select parent_id from " . TABLE_CATEGORIES . " where parent_id = '0'");
    $height.= A*mysql_num_rows($result)-18; //where A is the height of your oCMenu.level[0].height
    //experiment with the multiplyer denpending on the size of your menu
    
    $info_box_contents[] = array('text' => '<ilayer id="tlayerm"><div id="topm"><img src="images/trans.gif" width="'. BOX_WIDTH .'" height="' . $height . '"></div></ilayer>');
    
    //BOX_WIDTH you set in .../includes/application_top.php
    
     new infoBox($info_box_contents);
    
    ?>
        </TD>
      </TR>
    
    <!-- coolMenu_eof //-->

     

     

    Includes/footer.php

     

    <table border="0" width="100%" cellspacing="0" cellpadding="1">
     <tr class="footer">
       <td class="footer">??<?php echo strftime(DATE_FORMAT_LONG); ?>??
    </td>
      <td align="right" class="footer">??</td>
    </tr>
    <table border="0" width="100%" cellspacing="0" cellpadding="4">
    <tr class="headerNavigation">
    <td align="center" class="headerNavigation"><?php { ?><a href="<?php echo tep_href_link(FILENAME_PRIVACY, '', 'NONSSL'); ?>" class="headerNavigation"><?php echo BOX_INFORMATION_PRIVACY; ?></a> ?|? <?php } ?><a href="<?php echo tep_href_link(FILENAME_CONDITIONS, '', 'NONSSL'); ?>" class="headerNavigation"><?php echo BOX_INFORMATION_CONDITIONS; ?></a> ?|? <a href="<?php echo tep_href_link(FILENAME_SHIPPING, '', 'NONSSL'); ?>" class="headerNavigation"><?php echo BOX_INFORMATION_SHIPPING; ?></a> ?|? <a href="<?php echo tep_href_link(FILENAME_ALLPRODS, '', 'NONSSL'); ?>" class="headerNavigation"><?php echo BOX_INFORMATION_ALLPRODS; ?></a> ?|? <a href="<?php echo tep_href_link(FILENAME_CONTACT_US, '', 'NONSSL'); ?>" class="headerNavigation"><?php echo BOX_INFORMATION_CONTACT; ?></a> ?|? <a href="<?php echo tep_href_link(FILENAME_ALLPRODS, '', 'NONSSL'); ?>" class="headerNavigation"><?php echo BOX_INFORMATION_ALLPRODS; ?></a> ?|? <a href="allcategories.php" class="headerNavigation"><?php echo Categories ?></a></td>
    </tr>
    </table></table>
    <table border="0" width="100%" cellspacing="0" cellpadding="0">
     <tr>
       <td align="center" class="smallText">
    <?php
     echo FOOTER_TEXT_BODY
    ?> 
    </td>
     </tr>
    </table>
    <?php
     if ($banner = tep_banner_exists('dynamic', '468x50')) {
    ?>
    <table border="0" width="100%" cellspacing="0" cellpadding="0">
     <tr>
       <td align="center"><?php echo tep_display_banner('static', $banner); ?></td>
     </tr>
    <?php
    }
    require(DIR_WS_FUNCTIONS . 'user_tracking.php');
    if ( OSC_CONFIG_USER_TRACKING == 'true') { tep_update_user_tracking(); 
    }
    ?>
    </table>
    <table border="0" cellpadding="0" cellspacing="0" width="100%" > 
     <tr> 
       <td width="33%"> </td> 
       <td width="33%"> 
       <img border="0" src="images/banners/fbtm.gif" ></td> 
    <td width="34%">?</td> 
     </tr> 
    </table>
      </td>
    </tr>
    </table>
    <!-- coolMenu //--><?php require(DIR_WS_INCLUDES . 'coolmenu.php'); ?><!-- coolMenu_eof //-->

×
×
  • Create New...