home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2007 July / PCgo_0707_DVDC.iso / html / main.js < prev    next >
Encoding:
Text File  |  2007-05-09  |  32.4 KB  |  439 lines

  1.  
  2.  
  3. /*---------------------------------------------
  4. Main Item Widths and Heights
  5. -----------------------------------------------*/
  6.  
  7.  
  8.     dqm__main_width = 162            //default main item widths
  9.     dqm__main_height = 17            //default main item heights
  10.  
  11.     //dqm__main_widthX            //specific main item widths
  12.     //dqm__main_heightX            //specific main item heights
  13.  
  14.  
  15.  
  16.  
  17. /*---------------------------------------------
  18. Main Menu Borders Dividers and Layout
  19. -----------------------------------------------*/
  20.  
  21.  
  22.     dqm__main_horizontal = false        //align menu bar horizontally or vertically
  23.  
  24.     dqm__main_border_width = 5;        //the thickness of the border in pixels
  25.     dqm__main_border_color = "#FFFFFF"    //HEX color or set width to 0 for no borders
  26.  
  27.  
  28.     dqm__main_use_dividers = true        //When true the item gap setting is ignored
  29.                         //and the border width and color are used to
  30.                         //separate each main menu item.
  31.  
  32.  
  33.     dqm__main_item_gap = 0            //the gap between main menu items in pixels
  34.  
  35.  
  36.     dqm__align_items_bottom_and_right = true    //align items of different size to the bottom
  37.                             //or right edge of the largest main menu item
  38.                             //depending on the horizontal or vertical layout
  39.                             //of the main menu bar - false aligns items to
  40.                             //the top and left
  41.  
  42. /*---------------------------------------------
  43. Menu Item Background and Text Colors
  44. -----------------------------------------------*/
  45.  
  46.  
  47.     dqm__main_bgcolor = "#EFF1F4"        //default color for all items, HEX or 'transparent'
  48.     //dqm__main_bgcolorX = "#EFF1F4"        //specific menu item color, HEX or 'transparent'
  49.  
  50.     dqm__main_hl_bgcolor = "#6684A3"    //HEX color value or set to 'transparent'
  51.     //dqm__main_hl_bgcolorX = "#eeeeee"
  52.  
  53.     dqm__main_textcolor = "#000000"
  54.     //dqm__main_textcolorX = "#111111"
  55.  
  56.     dqm__main_hl_textcolor = "#FFFFFF"
  57.     //dqm__main_hl_textcolorX = "#ff0000"
  58.  
  59.  
  60.  
  61. /*---------------------------------------------
  62. Menu Item Font Settings
  63. -----------------------------------------------*/
  64.  
  65.  
  66.     dqm__main_fontfamily = "Arial"    //Any available system font
  67.     dqm__main_fontsize = 12            //Defined with pixel sizing
  68.     dqm__main_textdecoration = "normal"    //set to: 'normal', or 'underline'
  69.     dqm__main_fontweight = "bold"        //set to: 'normal', or 'bold'
  70.     dqm__main_fontstyle = "normal"        //set to: 'normal', or 'italic'
  71.  
  72.  
  73.     //rollover effect
  74.  
  75.     dqm__main_hl_textdecoration = "none"
  76.  
  77.  
  78.  
  79. /*---------------------------------------------
  80. Main Menu Margins and Text Alignment
  81. -----------------------------------------------*/
  82.  
  83.  
  84.     dqm__main_text_alignment = "left"        //set to: 'left', 'center' or 'right'
  85.     dqm__main_margin_top = 1
  86.     dqm__main_margin_bottom = 2
  87.     dqm__main_margin_left = 7
  88.     dqm__main_margin_right = 0
  89.  
  90.  
  91.  
  92.     //specific settings
  93.  
  94.     dqm__main_text_alignmentX = "left"        //set to: 'left', 'center' or 'right'
  95.     dqm__main_margin_topX = 1
  96.     dqm__main_margin_bottomX = 2
  97.  
  98.  
  99.  
  100. /*---------------------------------------------
  101. Optional Status Bar Text
  102. -----------------------------------------------*/
  103.  
  104.  
  105.     //dqm__status_text0 = "Sample text - Main Menu Item 0"
  106.     //dqm__status_text1 = "Sample text - Main Menu Item 1"
  107.  
  108.  
  109.  
  110. /*---------------------------------------------
  111. Main Menu Items (Text, URL's, and Icons)
  112. -----------------------------------------------*/
  113.  
  114.  
  115.     //Main Menu 0
  116.  
  117.     dqm__maindesc0 = "Film"
  118.     dqm__micon_index0 = 0
  119.     dqm__url0 = "movie.htm"
  120.  
  121.  
  122.     //Main Menu 1
  123.  
  124.     dqm__maindesc1 = "Software"
  125.     dqm__micon_index1 = 0
  126.     dqm__url1 = "software.htm"
  127.  
  128.  
  129.  
  130.     //Main Menu 2
  131.  
  132.     dqm__maindesc2 = "PowerTipps"
  133.     dqm__micon_index2 = 0
  134.     dqm__url2 = "../_PowerTipps/Tipps.PDF"
  135.  
  136.  
  137.     //Main Menu 3
  138.  
  139.     dqm__maindesc3 = "Service"
  140.     dqm__micon_index3 = 0
  141.     dqm__url3 = "service_impressum.htm"
  142.  
  143.  
  144.     //Main Menu 4
  145.  
  146.     dqm__maindesc4 = "PCgo im Internet"
  147.     dqm__micon_index4 = 0
  148.     dqm__url4 = ""
  149.  
  150.  
  151.     //Main Menu 5
  152.  
  153.     dqm__maindesc5 = "Artikel zum Heft"
  154.     dqm__micon_index5 = 1
  155.     dqm__url5 = "article.htm"
  156.  
  157.  
  158. /**********************************************************************************************
  159. **********************************************************************************************
  160.  
  161.                               Sub Menu Settings
  162.  
  163. **********************************************************************************************
  164. **********************************************************************************************/
  165.  
  166.  
  167. /*-------------------------------------------
  168. Colors, Borders, Dividers, and more...
  169. --------------------------------------------*/
  170.  
  171.  
  172.     dqm__sub_menu_width = 130              //default sub menu widths
  173.     dqm__sub_xy = "0,0"                    //default sub x,y coordinates - defined relative
  174.                         //to the top-left corner of parent image or sub menu
  175.  
  176.  
  177.     dqm__urltarget = "_self"        //default URL target: _self, _parent, _new, or "my frame name"
  178.  
  179.     dqm__border_width = 0
  180.     dqm__divider_height = 0
  181.  
  182.     dqm__border_color = "#666666"        //Hex color or 'transparent'
  183.     dqm__menu_bgcolor = "#e6e6e6"        //Hex color or 'transparent'
  184.     dqm__hl_bgcolor = "#e6e6e6"
  185.  
  186.     dqm__mouse_off_delay = 0        //defined in milliseconds (activated after mouse stops)
  187.     dqm__nn4_mouse_off_delay = 500        //defined in milliseconds (activated after leaving sub)
  188.  
  189.  
  190.  
  191. /*-------------------------------------------
  192. Font settings and margins
  193. --------------------------------------------*/
  194.  
  195.  
  196.     //Font settings
  197.  
  198.     dqm__textcolor = "#333333"
  199.     dqm__fontfamily = "Verdana"        //Any available system font
  200.     dqm__fontsize = 12            //Defined with pixel sizing
  201.     dqm__fontsize_ie4 = 9            //Defined with point sizing
  202.     dqm__textdecoration = "normal"        //set to: 'normal', or 'underline'
  203.     dqm__fontweight = "normal"        //set to: 'normal', or 'bold'
  204.     dqm__fontstyle = "normal"        //set to: 'normal', or 'italic'
  205.  
  206.  
  207.     //Rollover font settings
  208.  
  209.     dqm__hl_textcolor = "#ffffff"
  210.     dqm__hl_textdecoration = "none"    //set to: 'normal', or 'underline'
  211.  
  212.  
  213.  
  214.     //Margins and text alignment
  215.  
  216.     dqm__text_alignment = "left"        //set to: 'left', 'center' or 'right'
  217.     dqm__margin_top = 0
  218.     dqm__margin_bottom = 0
  219.     dqm__margin_left = 0
  220.     dqm__margin_right = 0
  221.  
  222.  
  223.  
  224. /*---------------------------------------------
  225. Optional Status Bar Text
  226. -----------------------------------------------*/
  227.  
  228.  
  229.     dqm__show_urls_statusbar = false
  230.  
  231.     //dqm__status_text1_0 = "Sample text - Main Menu Item 1, Sub Item 0"
  232.     //dqm__status_text1_0 = "Sample text - Main Menu Item 1, Sub Item 1"
  233.  
  234.  
  235.  
  236. /*-------------------------------------------
  237. Internet Explorer Transition Effects
  238. --------------------------------------------*/
  239.  
  240.  
  241.     //Options include - none | fade | pixelate |iris | slide | gradientwipe | checkerboard | radialwipe | randombars | randomdissolve |stretch
  242.  
  243.     dqm__sub_menu_effect = "fade"
  244.     dqm__sub_item_effect = "fade"
  245.  
  246.  
  247.     //Define the effect duration in seconds below.
  248.  
  249.     dqm__sub_menu_effect_duration = .4
  250.     dqm__sub_item_effect_duration = .4
  251.  
  252.  
  253.     //Specific settings for various transitions.
  254.  
  255.     dqm__effect_pixelate_maxsqare = 25
  256.     dqm__effect_iris_irisstyle = "CIRCLE"        //CROSS, CIRCLE, PLUS, SQUARE, or STAR
  257.     dqm__effect_checkerboard_squaresx = 14
  258.     dqm__effect_checkerboard_squaresY = 14
  259.     dqm__effect_checkerboard_direction = "RIGHT"    //UP, DOWN, LEFT, RIGHT
  260.  
  261.  
  262.     //Opacity and drop shadows.
  263.  
  264.     dqm__sub_menu_opacity = 100            //1 to 100
  265.     dqm__dropshadow_color = "none"            //Hex color value or 'none'
  266.     dqm__dropshadow_offx = 5            //drop shadow width
  267.     dqm__dropshadow_offy = 5            //drop shadow height
  268.  
  269.  
  270.  
  271. /*-------------------------------------------
  272. Browser Bug fixes and Workarounds
  273. --------------------------------------------*/
  274.  
  275.  
  276.     //Mac offset fixes, adjust until sub menus position correctly.
  277.  
  278.     dqm__os9_ie5mac_offset_x = 10
  279.     dqm__os9_ie5mac_offset_Y = 15
  280.  
  281.     dqm__osx_ie5mac_offset_x = 10
  282.     dqm__osx_ie5mac_offset_Y = 15
  283.  
  284.     dqm__ie4mac_offset_x = -10
  285.     dqm__ie4mac_offset_Y = -45
  286.  
  287.  
  288.     //Mac offset fixes, adjust until main menu items line up correctly
  289.  
  290.     dqm__mainitems_os9_ie5mac_offset_x = 10
  291.     dqm__mainitems_os9_ie5mac_offset_y = 15
  292.  
  293.     dqm__mainitems_osx_ie5mac_offset_x = 10
  294.     dqm__mainitems_osx_ie5mac_offset_y = 15
  295.  
  296.  
  297.     //Netscape 4 resize bug workaround.
  298.  
  299.     dqm__nn4_reaload_after_resize = true
  300.     dqm__nn4_resize_prompt_user = false
  301.     dqm__nn4_resize_prompt_message = "To reinitialize the navigation menu please click the 'Reload' button."
  302.  
  303.  
  304.     //Set to true if the menu is the only item on the HTML page.
  305.  
  306.     dqm__use_opera_div_detect_fix = true
  307.  
  308.  
  309.     //Pre-defined sub menu item heights for the Espial Escape browser.
  310.  
  311.     dqm__escape_item_height = 20
  312.     dqm__escape_item_height0_0 = 70
  313.     dqm__escape_item_height0_1 = 70
  314.  
  315.  
  316. /*---------------------------------------------
  317. Exposed menu events
  318. ----------------------------------------------*/
  319.  
  320.  
  321.     //Reference additional onload statements here.
  322.  
  323. //    dqm__onload_code = ""
  324.  
  325.  
  326.     //The 'X' indicates the index number of the sub menu group or item.
  327.  
  328.     dqm__showmenu_codeX = "status = 'custom show menu function call - menu0'"
  329.     dqm__hidemenu_codeX = "status = 'custom hide menu function call - menu0'"
  330.     dqm__clickitem_codeX_X = "alert('custom Function - Menu Item 0_0')"
  331.  
  332.  
  333.  
  334. /*---------------------------------------------
  335. Specific Sub Menu Settings
  336. ----------------------------------------------*/
  337.  
  338.  
  339.     //The following settings may be defined for specific sub menu groups.
  340.     //The 'X' represents the index number of the sub menu group.
  341.  
  342.     dqm__border_widthX = 10;
  343.     dqm__divider_heightX = 5;
  344.     dqm__border_colorX = "#0000ff";
  345.     dqm__menu_bgcolorX = "#ff0000"
  346.     dqm__hl_bgcolorX = "#00ff00"
  347.     dqm__hl_textcolorX = "#ff0000"
  348.     dqm__text_alignmentX = "left"
  349.  
  350.  
  351.     //The following settings may be defined for specific sub menu items.
  352.     //The 'X' represents the index number of the sub menu item.
  353.  
  354.     dqm__hl_subdescX = "custom highlight text"
  355.     dqm__urltargetX = "_new"
  356.  
  357.  
  358.  
  359. /*---------------------------------------------
  360. Specific Sub Menu Settings
  361. ----------------------------------------------*/
  362.  
  363.  
  364.     //Sub Menu 0
  365.  
  366.     dqm__sub_xy0 = "0,-103"
  367.     dqm__sub_menu_width0 = 202
  368.  
  369.     dqm__subdesc0_0 = "<table width='202' border='0' cellspacing='0' cellpadding='0' height='335' background='../img/bg-mm00.gif'><tr><td width='46' height='104'><img src='../img/pix.gif' width='46' height='104' border='0'></td><td width='156' height='104'><img src='../img/pix.gif' width='156' height='104' border='0'></td></tr><tr><td width='46' height='231'><img src='../img/pix.gif' width='46' height='231' border='0'></td><td width='156' height='231' align='left' valign='top' class='submenulo'><table width='156' border='0' cellspacing='0' cellpadding='0'><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\" onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='movie_001.htm'\"> Cutaway</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\" onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='movie_002.htm'\"> Deep Salvage:<br> Bergung in der Tiefe</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr></table></td></tr></table>"
  370.     dqm__icon_index0_0 = 0
  371.  
  372.     //Sub Menu 1
  373.  
  374.     dqm__sub_xy1 = "0,-125"
  375.     dqm__sub_menu_width1 = 202
  376.  
  377. /*
  378.     dqm__subdesc1_0 = "<table width='202' border='0' cellspacing='0' cellpadding='0' height='335' background='../img/bg-mm01.gif'><tr><td width='46' height='126'><img src='../img/pix.gif' width='46' height='126' border='0'></td><td width='156' height='126'><img src='../img/pix.gif' width='156' height='126' border='0'></td></tr><tr><td width='46' height='209'><img src='../img/pix.gif' width='46' height='209' border='0'></td><td width='156' height='209' align='left' valign='top' class='submenulo'><table width='156' border='0' cellspacing='0' cellpadding='0'><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\" onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='software_full.htm'\"> Vollversionen</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\" onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='software_light.htm'\"> Lightversionen</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='software_tools.htm'\"> Software-Pakete</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='software_magazin.htm'\"> Software zum Heft</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='software_online.htm'\"> Online-Software</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='software_essentials.htm'\"> Grundausstattung</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='software_faq.htm'\"> ErklΣrungen</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr></table></td></tr></table>"
  379.     */
  380.     dqm__subdesc1_0 = "<table width='202' border='0' cellspacing='0' cellpadding='0' height='335' background='../img/bg-mm01.gif'><tr><td width='46' height='126'><img src='../img/pix.gif' width='46' height='126' border='0'></td><td width='156' height='126'><img src='../img/pix.gif' width='156' height='126' border='0'></td></tr><tr><td width='46' height='209'><img src='../img/pix.gif' width='46' height='209' border='0'></td><td width='156' height='209' align='left' valign='top' class='submenulo'><table width='156' border='0' cellspacing='0' cellpadding='0'><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\" onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='software_full.htm'\"> Vollversionen</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\" onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='software_light.htm'\"> Lightversionen</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='software_tools.htm'\"> Software-Pakete</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='software_magazin.htm'\"> Software zum Heft</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='software_online.htm'\"> Online-Software</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='software_essentials.htm'\"> Grundausstattung</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='software_faq.htm'\"> ErklΣrungen</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr></table></td></tr></table>"
  381.     dqm__icon_index1_0 = 0
  382.  
  383.  
  384.  
  385.     //Sub Menu 2
  386. /*
  387.     dqm__sub_xy2 = "0,-147"
  388.     dqm__sub_menu_width2 = 202
  389.  
  390.     dqm__subdesc2_0 = "<table width='202' border='0' cellspacing='0' cellpadding='0' height='335' background='../img/bg-mm02.gif'><tr><td width='46' height='148'><img src='../img/pix.gif' width='46' height='148' border='0'></td><td width='156' height='148'><img src='../img/pix.gif' width='156' height='148' border='0'></td></tr><tr><td width='46' height='187'><img src='../img/pix.gif' width='46' height='187' border='0'></td><td width='156' height='187' align='left' valign='top' class='submenulo'><table width='156' border='0' cellspacing='0' cellpadding='0'><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\" onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='offism00.htm'\"> Excel-Vorlagen</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\" onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='offism01.htm'\"> Word-Vorlagen</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr></table></td></tr></table>"
  391.     dqm__icon_index2_0 = 0
  392. */
  393.  
  394.       //Sub Menu 3
  395. /*
  396.     dqm__sub_xy3 = "0,-169"
  397.     dqm__sub_menu_width3 = 202
  398.  
  399.     dqm__subdesc3_0 = "<table width='202' border='0' cellspacing='0' cellpadding='0' height='335' background='../img/bg-mm03.gif'><tr><td width='46' height='170'><img src='../img/pix.gif' width='46' height='170' border='0'></td><td width='156' height='170'><img src='../img/pix.gif' width='148' height='170' border='0'></td></tr><tr><td width='46' height='165'><img src='../img/pix.gif' width='46' height='165' border='0'></td><td width='156' height='165' align='left' valign='top' class='submenulo'><table width='156' border='0' cellspacing='0' cellpadding='0'><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='multsm01.htm'\"> Kino-Forum</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr></table></td></tr></table>"
  400.     dqm__icon_index3_0 = 0
  401. */
  402.  
  403.         //Sub Menu 4
  404.  
  405.     dqm__sub_xy4 = "0,-191"
  406.     dqm__sub_menu_width4 = 240
  407.  
  408.     dqm__subdesc4_0 = "<table width='240' border='0' cellspacing='0' cellpadding='0' height='335' background='../img/bg-sm04.gif'><tr><td width='46' height='192'><img src='../img/pix.gif' width='46' height='192' border='0'></td><td width='194' height='192'><img src='../img/pix.gif' width='194' height='192' border='0'></td></tr><tr><td width='46' height='143'><img src='../img/pix.gif' width='46' height='143' border='0'></td><td width='194' height='143' align='left' valign='top' class='submenulo'><table width='156' border='0' cellspacing='0' cellpadding='0'><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='http://www.pcgo.de/common/nws/latest.php'\"> TΣglich frische News</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='http://www.pcgo.de/downloads/cm/dtt/top30.php'\"> Free- und Shareware</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='http://www.pcgo.de/common/tests/hard.php'\"> Hardware Tests</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='http://www.pcgo.de/common/tests/soft.php'\"> Software Tests</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='http://kaufen.pcgo.de/'\"> Kaufberatung</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr></table></td></tr></table>"
  409.     dqm__icon_index4_0 = 0
  410.  
  411.  
  412.      //Sub Menu 5
  413. /*
  414.     dqm__sub_xy5 = "0,-213"
  415.     dqm__sub_menu_width5 = 202
  416.  
  417.     dqm__subdesc5_0 = "<table width='202' border='0' cellspacing='0' cellpadding='0' height='335' background='../img/bg-mm05.gif'><tr><td width='46' height='214'><img src='../img/pix.gif' width='46' height='214' border='0'></td><td width='156' height='214'><img src='../img/pix.gif' width='148' height='214' border='0'></td></tr><tr><td width='46' height='121'><img src='../img/pix.gif' width='46' height='121' border='0'></td><td width='156' height='121' align='left' valign='top' class='submenulo'><table width='156' border='0' cellspacing='0' cellpadding='0'><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='http://www.pcgo.de/common/nws/latest.php'\"> TΣglich frische News</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='http://www.pcgo.de/downloads/cm/dtt/top30.php'\"> Free- und Shareware</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='http://www.pcgo.de/common/tests/hard.php'\"> Hardware Tests</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='http://www.pcgo.de/common/tests/soft.php'\"> Software Tests</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='http://kaufen.pcgo.de/'\"> Kaufberatung</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr></table></td></tr></table>"
  418.     dqm__icon_index5_0 = 0
  419. */
  420.  
  421.  
  422. //Sub Menu 6
  423. /*
  424.     dqm__sub_xy6 = "0,-235"
  425.     dqm__sub_menu_width6 = 202
  426.  
  427.     dqm__subdesc6_0 = "<table width='202' border='0' cellspacing='0' cellpadding='0' height='335' background='../img/bg-mm06.gif'><tr><td width='46' height='206'><img src='../img/pix.gif' width='46' height='206' border='0'></td><td width='156' height='206'><img src='../img/pix.gif' width='148' height='206' border='0'></td></tr><tr><td width='46' height='129'><img src='../img/pix.gif' width='46' height='129' border='0'></td><td width='156' height='129' align='left' valign='top' class='submenulo'><table width='156' border='0' cellspacing='0' cellpadding='0'><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='http://www.pcgo.de/common/nws/latest.php'\"> TΣglich frische News</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='http://www.pcgo.de/downloads/cm/dtt/top30.php'\"> Free- und Shareware</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='http://www.pcgo.de/common/tests/hard.php'\"> Hardware Tests</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='http://www.pcgo.de/common/tests/soft.php'\"> Software Tests</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='http://kaufen.pcgo.de/'\"> Kaufberatung</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr></table></td></tr></table>"
  428.     dqm__icon_index6_0 = 0
  429. */
  430.  
  431.          //Sub Menu 7
  432. /*
  433.     dqm__sub_xy7 = "0,-257"
  434.     dqm__sub_menu_width7 = 202
  435.  
  436.     dqm__subdesc7_0 = "<table width='202' border='0' cellspacing='0' cellpadding='0' height='335' background='../img/bg-mm07.gif'><tr><td width='46' height='258'><img src='../img/pix.gif' width='46' height='258' border='0'></td><td width='156' height='258'><img src='../img/pix.gif' width='148' height='258' border='0'></td></tr><tr><td width='46' height='77'><img src='../img/pix.gif' width='46' height='77' border='0'></td><td width='156' height='77' align='left' valign='top' class='submenulo'><table width='156' border='0' cellspacing='0' cellpadding='0'><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='http://www.pcgo.de/common/nws/latest.php'\"> TΣglich frische News</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='http://www.pcgo.de/downloads/cm/dtt/top30.php'\"> Free- und Shareware</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='http://www.pcgo.de/common/tests/hard.php'\"> Hardware Tests</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='http://www.pcgo.de/common/tests/soft.php'\"> Software Tests</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr><tr><td align='left' valign='middle' width='150' height='15' class='submenulo' onMouseOver=\"style.backgroundColor='#000000';style.color='#FFFFFF'\"    onMouseOut=\"style.backgroundColor='transparent';style.color='#000000'\" onclick=\"document.location.href='http://kaufen.pcgo.de/'\"> Kaufberatung</td><td align='left' valign='top' width='6' height='15'><img src='../img/pix.gif' width='6' height='15' border='0'></td></tr></table></td></tr></table>"
  437.     dqm__icon_index7_0 = 0
  438.     */
  439.