
//
//
//  NOTE: Parameters with an appended '//' are commented out,
//        delete the '//' to activate the parameter. 
//
//        Commenting out required parameters will cause errors.
//
//        Text values, except TRUE and FALSE statements, must be
//        enclosed by double quotes (").
//  
//        Each parameter value should appear on its own line.
//
//        This data file may also be placed within your HTML page
//        by enclosing between JavaScript tags.
//
//        Due to browser limitations, DHTML menus will not appear
//        on top of Flash objects, across frames, or over certain
//        form field elements. A hide and show workaround for form
//        fields is included with this menu (see the 'Menu event 
//        triggered custom function calls' section below).         




/*-------------------------------------------
Copyright Notice - The following parameter is 
required in order for the menu to function.
--------------------------------------------*/


   DQM_Notice = "DHTML QuickMenu, Copyright (c) - 2002, OpenCube Inc. - www.opencube.com"
 
   limit_multiple_users = true

/*-------------------------------------------
required menu Settings
--------------------------------------------*/


   DQM_sub_menu_width = 130      //default sub menu widths
   DQM_sub_xy = "0,0"            //default sub x,y coordinates
   
   
   DQM_codebase = "scripts/"             //relative location of .js files
   DQM_urltarget = "_self"       //set to: _self, _parent, _new, or "my frame name"

   DQM_border_width = 1
   DQM_divider_height = 1

   DQM_border_color = "#000000"  //Hex color value or 'transparent'
   DQM_menu_bgcolor = "#4A6B98"  //Hex color value or 'transparent'
   DQM_hl_bgcolor = "#2C4970"    //Hex color value
   

   /*---The following parameter defines the delay
   -----time between the mouse moving outside of
   -----a sub menu and the sub menu actually closing.
   -----In all browsers except Netscape 4.x this time 
   -----period starts after the mouse leaves the sub 
   -----menu and the user stops moving the mouse. 
   -----This setting is useful for reducing end-user 
   -----error in the selection of sub menus. Defined 
   -----in milliseconds (1/1000s)---*/

   DQM_mouse_off_delay = 100
   
  
   /*---Internet Explorer Mac Offset Fix - The following
   -----parameters correct position reporting bugs in
   -----ie4.x and ie5.x on the Mac OS9 and OSX platforms.
   -----Adjust the offsets below until the first level
   -----sub menus pop up in the correct location.*/
   
   DQM_os9_ie5mac_offset_X = 10
   DQM_os9_ie5mac_offset_Y = 15

   DQM_osx_ie5mac_offset_X = 0
   DQM_osx_ie5mac_offset_Y = 0

   DQM_ie4mac_offset_X = -8
   DQM_ie4mac_offset_Y = -50


   /*---Netscape 4.x fix option - bugs in Netscape 4.x
   -----can cause layers (sub menus) to be rendered
   -----incorrectly upon resizing the browser window.
   -----The only way to work around this issue is to reload
   -----the page after a resize. The following parameters allow
   -----the menu to automatically reload the page for the user
   -----after a resize, prompts the user to reload the page
   -----manually after resize, or attempts to correct the menu
   -----after a resize without reloading.-----*/
   
   DQM_nn4_reaload_after_resize = true

   DQM_nn4_resize_prompt_user = false
   DQM_nn4_resize_prompt_message = "To reinitialize the navigation menu please click the 'Reload' button."
   

   /*---Opera 4 & up fix - The following parameter option
   -----corrects div mouse detection bugs on Opera. Set the
   -----parameter value to true if your sub menus are located
   -----at the lowest point on the HTML page.---*/

   DQM_use_opera_div_detect_fix = true;


/*-------------------------------------------
Internet Explorer Transition Effects - IE5.5 & UP

Note: All non supporting browsers will ignore
the effect settings below while retaining the
complete sub menu functionality and look.
--------------------------------------------*/

	
   /*----Options include - none | fade | pixelate |
   ------iris | slide | gradientwipe | checkerboard |
   ------radialwipe | randombars | randomdissolve |stretch */

   DQM_sub_menu_effect = "none"
   DQM_sub_item_effect = "none"


   /*----Define the effect duration in seconds below---*/
   
   DQM_sub_menu_effect_duration = .4
   DQM_sub_item_effect_duration = .4

  
   /*----Customization option settings for the various effect
   ------transitions may be defined below---*/

   DQM_effect_pixelate_maxsqare = 25
   DQM_effect_iris_irisstyle = "CIRCLE"          //CROSS, CIRCLE, PLUS, SQUARE, or STAR
   DQM_effect_checkerboard_squaresx = 14
   DQM_effect_checkerboard_squaresY = 14
   DQM_effect_checkerboard_direction = "RIGHT"   //UP, DOWN, LEFT, RIGHT
   

   /*----Note: Due to browser limitations, when using a 
   ------drop shadow effect or sub menu opacity values
   ------less than 100, combined with sub menu and or
   ------sub menu item transitions, undesirable transition
   ------results may occur. To remedy the issue use
   ------semi transparent sub menus or borders without
   ------transition effects or use transition effects without
   ------borders and set the sub menu opacity value to 100.---*/
   
   /*----Opacity is defined with a value between
   ------1 and 100 with 100 being opaque---*/   	

   DQM_sub_menu_opacity = 100

   DQM_dropshadow_color = "#DEDEDE"                //Hex color value or 'none'
   DQM_dropshadow_offx = 3                      //drop shadow width
   DQM_dropshadow_offy = 3	                //drop shadow height



/*---------------------------------------------
Optional event triggered custom function calls
----------------------------------------------*/


   /*----This menu uses the documents onload event to
   ------initially generate the menus. If your HTML page requires
   ------the onload statement for calling other script functions
   ------or statements you may execute your code using the
   ------parameter below------*/

   //DQM_onload_code = "alert('custom function - onload')"


   /*----the following parameters may be used to execute
   ------custom code upon menu pop-up and hide.
   ------These are useful for hiding drop down boxes which
   ------may not be displayed under the menus due to
   ------browser limitations with certain form fields.---*/

   //DQM_showmenu_code0 = "status = 'custom show menu function call - menu0'"
   //DQM_showmenu_code1 = "status = 'custom show menu function call - menu1'"

   //DQM_hidemenu_code0 = "status = 'custom hide menu function call - menu0'"
   //DQM_hidemenu_code1 = "status = 'custom hide menu function call - menu1'"

 
   /*----the following parameters may be used to execute
   ------custom code upon clicking a menu item. If a URL link 
   ------and custom code are both defined the code will be 
   ------executed first, then the URL link will be loaded. This 
   ------parameter option is useful for opening custom pop up windows.---*/

   //DQM_clickitem_code0_0 = "alert('custom Function - Menu Item 0_0')"
   //DQM_clickitem_code1_0 = "alert('custom Function - Menu Item 1_0')"



/*-------------------------------------------
Required font Settings
--------------------------------------------*/
   

   DQM_textcolor = "#DEDEDE"
   DQM_fontfamily = "Arial"            //Any available system font     
   DQM_fontsize = 11		         //Defined with pixel sizing  	
   DQM_fontsize_ie4 = 8		         //Defined with point sizing
   DQM_textdecoration = "normal"         //set to: 'normal', or 'underline'
   DQM_fontweight = "normal"             //set to: 'normal', or 'bold'
   DQM_fontstyle = "normal"	         //set to: 'normal', or 'italic' 	
   DQM_hl_textcolor = "#FFFFFF"
   DQM_hl_textdecoration = "none"   //set to: 'normal', or 'underline'

   DQM_margin_top = 3
   DQM_margin_bottom = 3
   DQM_margin_left = 5
   DQM_margin_right = 4

   DQM_text_alignment = "left"           //set to: 'left', 'center' or 'right'
   



/*---------------------------------------------
Optional Icon Images - Relative Positioning

The relative positioned icon images are automatically
placed directly before or after the sub menu items
text (placement is determined by text alignment). 
By adding transparent space to the left or right
of the icon image itself, a custom image to text gap
may be obtained (Note: The gap space between icon
images and text may also be achieved by using the
menus optional 2nd icon image, see the 'optional 2nd
icon images' section for more information). The 
relative positioned icons are useful for creating
text bullets for aesthetic purposes or symbolic icons
for different sub menu items.
-----------------------------------------------*/


   /*----Unlimited icon images may be defined and associated with any sub menu
   ------item by specifying the icons index with the 'DQM_icon_index' parameter 
   ------see the 'sub menu customization' section below for examples---------*/


   DQM_icon_image0 = "gfx/header/bullet-off.gif"
   DQM_icon_rollover0 = "gfx/header/bullet-on.gif"
   DQM_icon_image_wh0 = "13,8"

   DQM_icon_image1 = "gfx/header/bullet-off.gif"
   DQM_icon_rollover1 = "gfx/header/bullet-on.gif"
   DQM_icon_image_wh1 = "13,8"


/*---------------------------------------------
Optional 2nd Icon Images - Absolute Positioning

The 2nd absolute positioned icons may be positioned 
anywhere within the sub menu items bounding area. 
These icon images are useful for creating arrows 
or other symbols which indicate the existence of a 
child sub menu. Sub menu text alignment or length 
will not affect the images placement.  If your images 
undesirably appear over the top of sub menu text 
items then adjust the icons coordinates, sub menu 
widths, or margins accordingly.

Note: Icon image coordinates are defined relative to
the top right corner of the sub menu item when the
sub menu text is left aligned, or relative to the
top left corner when the sub menus text is right
aligned.
-----------------------------------------------*/


   /*----Unlimited icon images may be defined and associated with any sub menu
   ------item by specifying the icons index with the 'DQM_2nd_icon_index' parameter 
   ------see the 'sub menu customization' section below for examples---------*/

   DQM_2nd_icon_image0 = "gfx/header/arrowgry.gif"
   DQM_2nd_icon_rollover0 = "gfx/header/arrowwht.gif"
   DQM_2nd_icon_image_wh0 = "13,10"
   DQM_2nd_icon_image_xy0 = "0,4"


/*---------------------------------------------
Optional Status Bar Text

Note: Custom defined status bar text for a menu item 
will be displayed in place of the URL when the 
'DQM_show_urls_statusbar' parameter is set to true.
-----------------------------------------------*/

   DQM_show_urls_statusbar = false
   
   //DQM_status_text0 = "Sample text - Main Menu Item 0"
   //DQM_status_text1 = "Sample text - Main Menu Item 1"

   //DQM_status_text1_0 = "Sample text - Main Menu Item 1, Sub Item 0"	
   //DQM_status_text1_0 = "Sample text - Main Menu Item 1, Sub Item 1"	




 

   DQM_rollover_image0 = "gfx/header/hom_on.gif"
   DQM_rollover_wh0 = "77,20"
   DQM_url0 = "http://www.ststelecom.com";   

   DQM_rollover_image1 = "gfx/header/bus_on.gif"
   DQM_rollover_wh1 = "167,20"
   DQM_url1 = "business.html";   

   DQM_rollover_image2 = "gfx/header/residentialz.gif"
   DQM_rollover_wh2 = "118,20"
   DQM_url2 = "residential.html";

   DQM_rollover_image3 = "gfx/header/abo_on.gif" 
   DQM_rollover_wh3 = "111,20"
   DQM_url3 = "about.html";   

   DQM_rollover_image4 = "gfx/header/sup_on.gif" 
   DQM_rollover_wh4 = "165,20"
   DQM_url4 = "support.html";   

   DQM_rollover_image5 = "gfx/header/age_on.gif" 
   DQM_rollover_wh5 = "147,20"
   DQM_url5 = "agents.html";   

   DQM_rollover_image6 = "gfx/header/pre_on.gif" 
   DQM_rollover_wh6 = "111,20"
   DQM_url6 = "pressroom.html";

   DQM_rollover_image7 = "gfx/header/csres1.gif" 
   DQM_rollover_wh7 = "187,20"
   DQM_url7 = "support-residential.html";   

   DQM_rollover_image8 = "gfx/header/csvoipdial1.gif" 
   DQM_rollover_wh8 = "146,20"
   DQM_url8 = "support-voipdialing.html";   

   DQM_rollover_image9 = "gfx/header/csvoipportal1.gif" 
   DQM_rollover_wh9 = "120,20"
   DQM_url9 = "support-voipportal.html";   

   DQM_rollover_image10 = "gfx/header/csvoipoffice1.gif" 
   DQM_rollover_wh10 = "156,20"
   DQM_url10 = "support-voipoffice.html";   

   DQM_rollover_image11 = "gfx/header/contact1.gif" 
   DQM_rollover_wh11 = "98,20"
   DQM_url11 = "about-contact.html";   

  

/*********************************************************************/
/*                                                                   */
/*                       SUB MENU CUSTOMIZATION                      */
/*                                                                   */ 
/*********************************************************************/




/************************************************
*********-------Sub Menu 0--------***************
************************************************/

DQM_sub_xy7 = "-188,20"
DQM_sub_menu_width7 = 187;
DQM_subdesc7_0 = "Using Calling Features"
DQM_subdesc7_1 = "Using STS Voicemail"
DQM_subdesc7_2 = "Extended Local Calling"
DQM_subdesc7_3 = "Area Code Map"
DQM_subdesc7_4 = "International Dialing & Rates"
DQM_subdesc7_5 = "Repair Department"
DQM_subdesc7_6 = "Common Questions"
DQM_subdesc7_7 = "411 Web Directory"
DQM_icon_index7_0 = 0
DQM_icon_index7_1 = 0
DQM_icon_index7_2 = 0
DQM_icon_index7_3 = 0
DQM_icon_index7_4 = 0
DQM_icon_index7_5 = 0
DQM_icon_index7_6 = 0
DQM_icon_index7_7 = 0
DQM_2nd_icon_index7_0 = 0
DQM_2nd_icon_index7_1 = 0
DQM_url7_2 = "support_residential_elc.html"
DQM_url7_3 = "support_residential_acm.html"
DQM_url7_4 = "support_residential_id.html"
DQM_url7_5 = "support_residential_repair.html"
DQM_url7_6 = "support_residential_faq.html"
DQM_url7_7 = "support_residential_411.html"


/************************************************
****-------Sub 1 - Item 1 Sub Menu--------*******
************************************************/

DQM_sub_xy7_0 = "-4,1"
DQM_sub_menu_width7_0 = 200

DQM_subdesc7_0_0 = "Table of Contents"
DQM_subdesc7_0_1 = "Call Waiting"
DQM_subdesc7_0_2 = "Call Waiting ID"
DQM_subdesc7_0_3 = "Call Waiting Deluxe"
DQM_subdesc7_0_4 = "Last Call Return"
DQM_subdesc7_0_5 = "Caller ID"
DQM_subdesc7_0_6 = "Custom Ringing"
DQM_subdesc7_0_7 = "Continuous Redial"
DQM_subdesc7_0_8 = "Three Way Calling"
DQM_subdesc7_0_9 = "Speed Calling"
DQM_subdesc7_0_10 = "Call Block"
DQM_subdesc7_0_11 = "Anonymous Call Rejection"
DQM_subdesc7_0_12 = "Non-Listed Service"
DQM_subdesc7_0_13 = "Call Forwarding"
DQM_subdesc7_0_14 = "Quick Reference Guide"
DQM_icon_index7_0_0 = 0
DQM_icon_index7_0_1 = 0
DQM_icon_index7_0_2 = 0
DQM_icon_index7_0_3 = 0
DQM_icon_index7_0_4 = 0
DQM_icon_index7_0_5 = 0
DQM_icon_index7_0_6 = 0
DQM_icon_index7_0_7 = 0
DQM_icon_index7_0_8 = 0
DQM_icon_index7_0_9 = 0
DQM_icon_index7_0_10 = 0
DQM_icon_index7_0_11 = 0
DQM_icon_index7_0_12 = 0
DQM_icon_index7_0_13 = 0
DQM_icon_index7_0_14 = 0
DQM_url7_0_0 = "support_residential_00.html"
DQM_url7_0_1 = "support_residential_01.html"
DQM_url7_0_2 = "support_residential_02.html"
DQM_url7_0_3 = "support_residential_03.html"
DQM_url7_0_4 = "support_residential_05.html"
DQM_url7_0_5 = "support_residential_06.html"
DQM_url7_0_6 = "support_residential_08.html"
DQM_url7_0_7 = "support_residential_09.html"
DQM_url7_0_8 = "support_residential_10.html"
DQM_url7_0_9 = "support_residential_11.html"
DQM_url7_0_10 = "support_residential_12.html"
DQM_url7_0_11 = "support_residential_13.html"
DQM_url7_0_12 = "support_residential_14.html"
DQM_url7_0_13 = "support_residential_16.html"
DQM_url7_0_14 = "support_residential_18.html"


/************************************************
****-------Sub 1 - Item 2 Sub Menu--------*******
************************************************/

DQM_sub_xy7_1 = "-4,1"
DQM_sub_menu_width7_1 = 290

DQM_subdesc7_1_0 = "Table of Contents"
DQM_subdesc7_1_1 = "Setting Up Your Mailbox"
DQM_subdesc7_1_2 = "Calling Your Mailbox"
DQM_subdesc7_1_3 = "Main Menu"
DQM_subdesc7_1_4 = "Listening, Replying, Forwarding & Sending Messages"
DQM_subdesc7_1_5 = "Checking Receipt of a Message"
DQM_subdesc7_1_6 = "Using Submailboxes"
DQM_subdesc7_1_7 = "Managing Your Mailbox - Personal Options"
DQM_subdesc7_1_8 = "STS Telecom Voice Mail Premium Package"
DQM_subdesc7_1_9 = "Mailbox Capacity"
DQM_subdesc7_1_10 = "Frequently Asked Questions & Tips"
DQM_subdesc7_1_11 = "Voice Mail Local Access Numbers"
DQM_icon_index7_1_0 = 0
DQM_icon_index7_1_1 = 0
DQM_icon_index7_1_2 = 0
DQM_icon_index7_1_3 = 0
DQM_icon_index7_1_4 = 0
DQM_icon_index7_1_5 = 0
DQM_icon_index7_1_6 = 0
DQM_icon_index7_1_7 = 0
DQM_icon_index7_1_8 = 0
DQM_icon_index7_1_9 = 0
DQM_icon_index7_1_10 = 0
DQM_icon_index7_1_11 = 0
DQM_url7_1_0 = "support_residential_vm_00.html"
DQM_url7_1_1 = "support_residential_vm_01.html"
DQM_url7_1_2 = "support_residential_vm_02.html"
DQM_url7_1_3 = "support_residential_vm_03.html"
DQM_url7_1_4 = "support_residential_vm_04.html"
DQM_url7_1_5 = "support_residential_vm_05.html"
DQM_url7_1_6 = "support_residential_vm_06.html"
DQM_url7_1_7 = "support_residential_vm_07.html"
DQM_url7_1_8 = "support_residential_vm_09.html"
DQM_url7_1_9 = "support_residential_vm_10.html"
DQM_url7_1_10 = "support_residential_vm_11.html"
DQM_url7_1_11 = "support_residential_vm_12.html"



/************************************************
*********-------Sub Menu 1--------***************
************************************************/

DQM_sub_xy8 = "-147,20"
DQM_sub_menu_width8 = 147;
DQM_subdesc8_0 = "Call Forwarding"
DQM_subdesc8_1 = "Call Waiting"
DQM_subdesc8_2 = "Call Restrictions"
DQM_subdesc8_3 = "Conferencing"
DQM_subdesc8_4 = "Call Management"
DQM_subdesc8_5 = "Call Groups"
DQM_subdesc8_6 = "Voice Mail"
DQM_subdesc8_7 = "Speed Dial"
DQM_subdesc8_8 = "Call Pickup"
DQM_subdesc8_9 = "Hunting"
DQM_subdesc8_10 = "Caller ID"
DQM_subdesc8_11 = "Other"
DQM_icon_index8_0 = 0
DQM_icon_index8_1 = 0
DQM_icon_index8_2 = 0
DQM_icon_index8_3 = 0
DQM_icon_index8_4 = 0
DQM_icon_index8_5 = 0
DQM_icon_index8_6 = 0
DQM_icon_index8_7 = 0
DQM_icon_index8_8 = 0
DQM_icon_index8_9 = 0
DQM_icon_index8_10 = 0
DQM_icon_index8_11 = 0
DQM_2nd_icon_index8_0 = 0
DQM_2nd_icon_index8_1 = 0
DQM_2nd_icon_index8_2 = 0
DQM_2nd_icon_index8_3 = 0
DQM_2nd_icon_index8_4 = 0
DQM_2nd_icon_index8_5 = 0
DQM_2nd_icon_index8_6 = 0
DQM_2nd_icon_index8_7 = 0
DQM_2nd_icon_index8_8 = 0
DQM_2nd_icon_index8_9 = 0
DQM_2nd_icon_index8_10 = 0
DQM_2nd_icon_index8_11 = 0




/************************************************
*********-------Sub Menu 2--------***************
************************************************/


DQM_sub_xy8_0 = "-4,1"
DQM_sub_menu_width8_0 = 220

DQM_subdesc8_0_0 = "Call Forward Busy"
DQM_subdesc8_0_1 = "Call Forward No Answer"
DQM_subdesc8_0_2 = "Call Forward Physical Phone"
DQM_subdesc8_0_3 = "Call Forwarding Unconditional"
DQM_subdesc8_0_4 = "EVO Standard Auto Attendant"
DQM_subdesc8_0_5 = "EVO Console (Auto Attendant via GUI)"
DQM_icon_index8_0_0 = 0
DQM_icon_index8_0_1 = 0
DQM_icon_index8_0_2 = 0
DQM_icon_index8_0_3 = 0
DQM_icon_index8_0_4 = 0
DQM_icon_index8_0_5 = 0
DQM_url8_0_0 = "support-voipdialing00.html"
DQM_url8_0_1 = "support-voipdialing00.html"
DQM_url8_0_2 = "support-voipdialing00.html"
DQM_url8_0_3 = "support-voipdialing00.html"
DQM_url8_0_4 = "support-voipdialing00.html"
DQM_url8_0_5 = "support-voipdialing00.html"




DQM_sub_xy8_1 = "-4,1"
DQM_sub_menu_width8_1 = 200

DQM_subdesc8_1_0 = "Call Waiting"
DQM_subdesc8_1_1 = "Call Waiting Enable/Disable"
DQM_icon_index8_1_0 = 0
DQM_icon_index8_1_1 = 0
DQM_url8_1_0 = "support-voipdialing01.html"
DQM_url8_1_1 = "support-voipdialing01.html"




DQM_sub_xy8_2 = "-4,1"
DQM_sub_menu_width8_2 = 200

DQM_subdesc8_2_0 = "Authorization Codes"
DQM_subdesc8_2_1 = "Black List Dialing"
DQM_subdesc8_2_2 = "Billing Account Codes (Mandatory)"
DQM_subdesc8_2_3 = "Billing Account Codes (Optional)"
DQM_subdesc8_2_4 = "Call Restriction"
DQM_subdesc8_2_5 = "White List Dialing"
DQM_icon_index8_2_0 = 0
DQM_icon_index8_2_1 = 0
DQM_icon_index8_2_2 = 0
DQM_icon_index8_2_3 = 0
DQM_icon_index8_2_4 = 0
DQM_icon_index8_2_5 = 0
DQM_url8_2_0 = "support-voipdialing02.html"
DQM_url8_2_1 = "support-voipdialing02.html"
DQM_url8_2_2 = "support-voipdialing02.html"
DQM_url8_2_3 = "support-voipdialing02.html"
DQM_url8_2_4 = "support-voipdialing02.html"
DQM_url8_2_5 = "support-voipdialing02.html"




DQM_sub_xy8_3 = "-4,1"
DQM_sub_menu_width8_3 = 200

DQM_subdesc8_3_0 = "3 or 4 way Conferencing"
DQM_icon_index8_3_0 = 0
DQM_url8_3_0 = "support-voipdialing03.html"




DQM_sub_xy8_4 = "-4,1"
DQM_sub_menu_width8_4 = 200

DQM_subdesc8_4_0 = "EVO Cierge – Find Me/Follow Me"
DQM_subdesc8_4_1 = "EVO Office – MS Outlook Integration"
DQM_subdesc8_4_2 = "EVO Portal"
DQM_subdesc8_4_3 = "EVO Rio"
DQM_icon_index8_4_0 = 0
DQM_icon_index8_4_1 = 0
DQM_icon_index8_4_2 = 0
DQM_icon_index8_4_3 = 0
DQM_url8_4_0 = "support-voipdialing04.html"
DQM_url8_4_1 = "support-voipdialing04.html"
DQM_url8_4_2 = "support-voipdialing04.html"
DQM_url8_4_3 = "support-voipdialing04.html"




DQM_sub_xy8_5 = "-4,1"
DQM_sub_menu_width8_5 = 200

DQM_subdesc8_5_0 = "Call Groups"
DQM_subdesc8_5_1 = "Hunt Groups"
DQM_subdesc8_5_2 = "EVO Merchant (ACD)"
DQM_icon_index8_5_0 = 0
DQM_icon_index8_5_1 = 0
DQM_icon_index8_5_2 = 0
DQM_url8_5_0 = "support-voipdialing05.html"
DQM_url8_5_1 = "support-voipdialing05.html"
DQM_url8_5_2 = "support-voipdialing05.html"



DQM_sub_xy8_6 = "-4,1"
DQM_sub_menu_width8_6 = 200

DQM_subdesc8_6_0 = "Voice Mail"
DQM_subdesc8_6_1 = "Message Waiting Indicator"
DQM_icon_index8_6_0 = 0
DQM_icon_index8_6_1 = 0
DQM_url8_6_0 = "support-voipdialing06.html"
DQM_url8_6_1 = "support-voipdialing06.html"




DQM_sub_xy8_7 = "-4,1"
DQM_sub_menu_width8_7 = 200

DQM_subdesc8_7_0 = "Speed Dialing Corporate"
DQM_subdesc8_7_1 = "Speed Dialing Personal"
DQM_subdesc8_7_2 = "Call Logs"
DQM_subdesc8_7_3 = "Click to call LCD"
DQM_icon_index8_7_0 = 0
DQM_icon_index8_7_1 = 0
DQM_icon_index8_7_2 = 0
DQM_icon_index8_7_3 = 0
DQM_url8_7_0 = "support-voipdialing07.html"
DQM_url8_7_1 = "support-voipdialing07.html"
DQM_url8_7_2 = "support-voipdialing07.html"
DQM_url8_7_3 = "support-voipdialing07.html"





DQM_sub_xy8_8 = "-4,1"
DQM_sub_menu_width8_8 = 200

DQM_subdesc8_8_0 = "Call Pick-up"
DQM_subdesc8_8_1 = "Call Pick-up Directed"
DQM_subdesc8_8_2 = "Call Pick-up Group"
DQM_icon_index8_8_0 = 0
DQM_icon_index8_8_1 = 0
DQM_icon_index8_8_2 = 0
DQM_url8_8_0 = "support-voipdialing08.html"
DQM_url8_8_1 = "support-voipdialing08.html"
DQM_url8_8_2 = "support-voipdialing08.html"




DQM_sub_xy8_9 = "-4,-61"
DQM_sub_menu_width8_9 = 280

DQM_subdesc8_9_0 = "Bridge Line Appearance/Shared Line Appearance"
DQM_subdesc8_9_1 = "Bridged (Multi) Line Appearance – Call Group"
DQM_subdesc8_9_2 = "Call Forking Primary Device"
DQM_subdesc8_9_3 = "Call Forking Ringing Options"
DQM_subdesc8_9_4 = "Call Forking Phone Registration Restrictions"
DQM_subdesc8_9_5 = "Call Forking Phone Nicknames"
DQM_icon_index8_9_0 = 0
DQM_icon_index8_9_1 = 0
DQM_icon_index8_9_2 = 0
DQM_icon_index8_9_3 = 0
DQM_icon_index8_9_4 = 0
DQM_icon_index8_9_5 = 0
DQM_url8_9_0 = "support-voipdialing09.html"
DQM_url8_9_1 = "support-voipdialing09.html"
DQM_url8_9_2 = "support-voipdialing09.html"
DQM_url8_9_3 = "support-voipdialing09.html"
DQM_url8_9_4 = "support-voipdialing09.html"
DQM_url8_9_5 = "support-voipdialing09.html"




DQM_sub_xy8_10 = "-4,-61"
DQM_sub_menu_width8_10 = 280

DQM_subdesc8_10_0 = "Caller ID Presentation Network Outbound"
DQM_subdesc8_10_1 = "Caller ID Presentation Contact"
DQM_subdesc8_10_2 = "Caller ID Block/Unblock"
DQM_subdesc8_10_3 = "Caller Name Presentation"
DQM_subdesc8_10_4 = "Anonymous Call Rejection"
DQM_icon_index8_10_0 = 0
DQM_icon_index8_10_1 = 0
DQM_icon_index8_10_2 = 0
DQM_icon_index8_10_3 = 0
DQM_icon_index8_10_4 = 0
DQM_url8_10_0 = "support-voipdialing10.html"
DQM_url8_10_1 = "support-voipdialing10.html"
DQM_url8_10_2 = "support-voipdialing10.html"
DQM_url8_10_3 = "support-voipdialing10.html"
DQM_url8_10_4 = "support-voipdialing10.html"





DQM_sub_xy8_11 = "-4,-229"
DQM_sub_menu_width8_11 = 200

DQM_subdesc8_11_0 = "Call Park"
DQM_subdesc8_11_1 = "Call Transfer - Blind"
DQM_subdesc8_11_2 = "Call Transfer – Consultative"
DQM_subdesc8_11_3 = "Call Hold"
DQM_subdesc8_11_4 = "Simultaneous Ring"
DQM_subdesc8_11_5 = "DID"
DQM_subdesc8_11_6 = "DOD"
DQM_subdesc8_11_7 = "Last Number Redial"
DQM_subdesc8_11_8 = "Last Call Return"
DQM_subdesc8_11_9 = "Distinctive Ringing"
DQM_subdesc8_11_10 = "Do Not Disturb"
DQM_subdesc8_11_11 = "EVO FAX"
DQM_subdesc8_11_12 = "Intercom Calling"
DQM_subdesc8_11_13 = "Malicious Call Trace"
DQM_icon_index8_11_0 = 0
DQM_icon_index8_11_1 = 0
DQM_icon_index8_11_2 = 0
DQM_icon_index8_11_3 = 0
DQM_icon_index8_11_4 = 0
DQM_icon_index8_11_5 = 0
DQM_icon_index8_11_6 = 0
DQM_icon_index8_11_7 = 0
DQM_icon_index8_11_8 = 0
DQM_icon_index8_11_9 = 0
DQM_icon_index8_11_10 = 0
DQM_icon_index8_11_11 = 0
DQM_icon_index8_11_12 = 0
DQM_icon_index8_11_13 = 0
DQM_url8_11_0 = "support-voipdialing11.html"
DQM_url8_11_1 = "support-voipdialing11.html"
DQM_url8_11_2 = "support-voipdialing11.html"
DQM_url8_11_3 = "support-voipdialing11.html"
DQM_url8_11_4 = "support-voipdialing11.html"
DQM_url8_11_5 = "support-voipdialing11.html"
DQM_url8_11_6 = "support-voipdialing11.html"
DQM_url8_11_7 = "support-voipdialing11.html"
DQM_url8_11_8 = "support-voipdialing11.html"
DQM_url8_11_9 = "support-voipdialing11.html"
DQM_url8_11_10 = "support-voipdialing11.html"
DQM_url8_11_11 = "support-voipdialing11.html"
DQM_url8_11_12 = "support-voipdialing11.html"
DQM_url8_11_13 = "support-voipdialing11.html"





/************************************************
*********-------Sub Menu 3--------***************
************************************************/



