
//  QuickMenu Pro, Copyright (c) 1998 - 2003, OpenCube Inc. - http://www.opencube.com
//  
//
//  QuickMenu Pro is Compatible With....
//
//      IE4, IE5.x, IE6 (Win 95, 98, ME, 2000, NT, XP)
//      IE4, IE5.x, &up (Mac)
//      IE4 & up (other platforms)
//      NS4.x (All Platforms)
//      NS5/6.x (All Platforms)
//      NS7 (All Platforms)
//      Opera 5,6,7 (All Platforms)
//      Mozilla 0.6 & up (All Platforms)
//      Konqueror 2.2 & up (Linux)
//      Espial Escape 4.x & up (All Platforms)
//      Ice Browser 5.x & up (All Platforms)
//      Safari 1.0 (Mac only browser)
//      Degrades gracefully in older browsers 
//
//  
//  To customize QuickMenu Pro open this file in a simple text 
//  editor (Notepad or similar). Modify and add parameters (all 
//  customizable parameters start with 'dqm__'), save this file,
//  and open 'sample.htm' in a browser to view your menu. View
//  the source for sample.htm for information on connecting 
//  sub menus to HTML images or build your page around the
//  included sample.htm file.
//
//  QuickMenu conditionally loads the necessary JavaScript
//  files (.js) depending on the browser and platform the user
//  is viewing the menu on. The total file size for each
//  browser / platform scenario is no larger than 12K.
//
//  This sample data file contains comments and help information
//  to assist in the initial customization of your drop down 
//  menu. If you base your implementation on this documented template
//  we recommend the removal of the comments before using on the web, as 
//  to optimize the overall file size and load time of the menu for 
//  the end user.  With the comments removed this sample data files
//  size may be reduced by as much as 50%. Note: To simplify comment 
//  removal there is a uncommented version of this sample template
//  offered in the 'samples' folder.
//
//
//  NOTE: Parameters prefixed with '//' 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 (unless the flash objects 'wmode'
//        parameter is set to transparent, however this may be buggy), 
//        across frames, or over certain form field elements. A hide 
//        and show workaround for form fields is included with this menu
//        (see the FAQ for additional information).         



/*-------------------------------------------
Colors, Borders, Dividers, and more... 
--------------------------------------------*/
    APP_context_path = ''    
	dqm__codebase = APP_context_path + "/javascripts/" 

	dqm__sub_menu_width = 130      		//default sub menu widths
    dqm__sub_xy = "0,0"            		//default sub x,y coordinates - defined relative
						//to the top-left corner of parent image or sub menu
   

	dqm__urltarget = "_self"		//default URL target: _self, _parent, _new, or "my frame name"

	dqm__border_width = 1
	dqm__divider_height = 1

	dqm__border_color = "#999999"		//Hex color or 'transparent'
	dqm__menu_bgcolor = "#F7F7F7"		//Hex color or 'transparent'
	dqm__hl_bgcolor = "#EEF5E0"		

	dqm__mouse_off_delay = 50		//defined in milliseconds (activated after mouse stops)
	dqm__nn4_mouse_off_delay = 500		//defined in milliseconds (activated after leaving sub)


/*-------------------------------------------
Font settings and margins
--------------------------------------------*/
   

    //Font settings

	dqm__textcolor = "#878787"
	dqm__fontfamily = "Verdana"		//Any available system font     
	dqm__fontsize = 11			//Defined with pixel sizing  	
	dqm__fontsize_ie4 = 9			//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' 	


    //Rollover font settings

	dqm__hl_textcolor = " #759d31"
	dqm__hl_textdecoration = "normal"	//set to: 'normal', or 'underline'



    //Margins and text alignment

	dqm__text_alignment = "left"		//set to: 'left', 'center' or 'right'
	dqm__margin_top = 2
	dqm__margin_bottom = 3
	dqm__margin_left = 10
	dqm__margin_right = 4

   


/*-------------------------------------------
Bullet and Icon image library - Unlimited bullet
or icon images may be defined below and then associated
with any sub menu items within the 'Sub Menu Structure 
and Text' section of this data file.
--------------------------------------------*/


    //Relative positioned icon images (flow with sub item text)

/*	dqm__icon_image0 = "sample_images/bullet.gif"
	dqm__icon_rollover0 = "sample_images/bullet_hl.gif"
	dqm__icon_image_wh0 = "13,8"

	

    //Absolute positioned icon images (coordinate poitioned)

	dqm__2nd_icon_image0 = "sample_images/arrow.gif"
	dqm__2nd_icon_rollover0 = "sample_images/arrow.gif"
	dqm__2nd_icon_image_wh0 = "13,10"
	dqm__2nd_icon_image_xy0 = "0,4"
*/


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

	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"	




/*-------------------------------------------
Internet Explorer Transition Effects
--------------------------------------------*/


    //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


    //Specific settings for various transitions.

	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


    //Opacity and drop shadows.

	dqm__sub_menu_opacity = 100			//1 to 100
	dqm__dropshadow_color = "none"			//Hex color value or 'none'
	dqm__dropshadow_offx = 5			//drop shadow width
	dqm__dropshadow_offy = 5			//drop shadow height



/*-------------------------------------------
Browser Bug fixes and Workarounds
--------------------------------------------*/


    //Mac offset fixes, adjust until sub menus position correctly.
   
	dqm__ie4mac_offset_X = -8
	dqm__ie4mac_offset_Y = -50


    //Netscape 4 resize bug workaround.

	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 5 & 6, set to true if the menu is the only item on the HTML page.

	dqm__use_opera_div_detect_fix = true


    //Pre-defined sub menu item heights for the Espial Escape browser.

	dqm__escape_item_height = 20
	dqm__escape_item_height0_0 = 70
	dqm__escape_item_height0_1 = 70


/*---------------------------------------------
Exposed menu events
----------------------------------------------*/


    //Reference additional onload statements here.

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


    //The 'X' indicates the index number of the sub menu group or item.
    //The 'X_X' indicates the index number of the sub menu item.

	dqm__showmenu_codeX = "status = 'custom show menu function call - menu0'"
	dqm__hidemenu_codeX = "status = 'custom hide menu function call - menu0'"
	dqm__clickitem_codeX_X = "alert('custom Function - Menu Item 0_0')"



/*---------------------------------------------
Specific Sub Menu Settings
----------------------------------------------*/


    //The following settings may be defined for specific sub menu groups.
    //The 'X' represents the index number of the sub menu group.

	dqm__border_widthX = 10;
	dqm__divider_heightX = 5;		
	dqm__border_colorX = "#ffffff";     
	dqm__menu_bgcolorX = "#ff0000"
	dqm__hl_bgcolorX = "#00ff00"
	dqm__hl_textcolorX = "#ff0000"
	dqm__text_alignmentX = "left"


    //The following settings may be defined for specific sub menu items.
    //The 'X_X' represents the index number of the sub menu item.

	dqm__hl_subdescX_X = "custom highlight text"
	dqm__urltargetX_X = "_new"


	limit_multiple_users = true
	limit_users = true
	sequence = "9x88_4"

/**********************************************************************************************
**********************************************************************************************

                           Main Menu Rollover Images and Links  

**********************************************************************************************
**********************************************************************************************/



    //Main Menu Item 0

	dqm__rollover_image0 = APP_context_path + "/images/menu_n/compania_b.gif"
	dqm__rollover_wh0 = "217,26"
	dqm__url0 = APP_context_path +  "/euroameRE/index.html";   


    //Main Menu Item 1

	dqm__rollover_image1 = APP_context_path +  "/images/menu_n/servicios_b.gif"
	dqm__rollover_wh1 = "217,26"
	dqm__url1 = APP_context_path + "/euroameRE/servicios.htm";


    //Main Menu Item 2

	dqm__rollover_image2 = APP_context_path + "/images/menu_n/respaldo_b.gif" 
	dqm__rollover_wh2 = "217,26"
	dqm__url2 = APP_context_path + "/euroameRE/respaldo.htm";   


    //Main Menu Item 3

	dqm__rollover_image3 = APP_context_path + "/images/menu_n/portafolio_b.gif" 
	dqm__rollover_wh3 = "217,26"
	dqm__url3 = APP_context_path +  "/euroameRE/portafolio.htm";   
  
 //Main Menu Item 4

	dqm__rollover_image4 = APP_context_path +  "/images/menu_n/indicadores_b.gif" 
	dqm__rollover_wh4 =  "217,26"
	dqm__url4 = APP_context_path +  "/euroameRE/indicadores.htm";

 //Main Menu Item 5

	dqm__rollover_image5 = APP_context_path + "/images/menu_n/hojas_b.gif" 
	dqm__rollover_wh5 = "217,26"


 //Main Menu Item 6

	dqm__rollover_image6 = APP_context_path + "/images/menu_n/compania_b.gif" 
	dqm__rollover_wh6 = "217,26"
	dqm__url6 =APP_context_path + "/euroinsurance/index.html";
	
	 //Main Menu Item 7

	dqm__rollover_image7 = APP_context_path + "/images/menu_n/compania_b.gif" 
	dqm__rollover_wh7 = "217,26"
	dqm__url7 =APP_context_path + "/eaprint/index.html";
	
 //Main Menu Item 8

	dqm__rollover_image8 = APP_context_path + "/images/menu_n/hojas_b.gif" 
	dqm__rollover_wh8 = "217,26"


 //Main Menu Item 9
	dqm__rollover_image9 = APP_context_path + "/images/menu_n/compania_b.gif" 
	dqm__rollover_wh9 = "217,26"
	dqm__url9 =APP_context_path + "/capsecu/index.html";
	
//Main Menu Item 10

	dqm__rollover_image10 = APP_context_path + "/images/menu_n/hojas_b.gif" 
	dqm__rollover_wh10 = "217,26"


 //Main Menu Item 11
	dqm__rollover_image11 = APP_context_path + "/images/menu_n/compania_b.gif" 
	dqm__rollover_wh11 = "217,26"
	dqm__url11 =APP_context_path + "/fruits/index.html";
	
	 //Main Menu Item 12
	dqm__rollover_image12 = APP_context_path + "/images/menu_n/hojas_b.gif" 
	dqm__rollover_wh12 = "217,26"

	
		 //Main Menu Item 13
	dqm__rollover_image13 = APP_context_path + "/images/menu_n/recurso_b.gif" 
	dqm__rollover_wh13 = "217,26"
	dqm__url13 =APP_context_path + "/eaprint/recurso.htm";

 //Main Menu Item 14

	dqm__rollover_image14 = APP_context_path + "/images/menu_n/compania_b.gif" 
	dqm__rollover_wh14 = "217,26"
	dqm__url14 =APP_context_path + "/euroconsulting/index.html";
	
 //Main Menu Item 15
	dqm__rollover_image15 = APP_context_path + "/images/menu_n/hojas_b.gif" 
	dqm__rollover_wh15 = "217,26"

	
 //Main Menu Item 16

	dqm__rollover_image16 = APP_context_path + "/images/menu_n/hojas_b.gif" 
	dqm__rollover_wh16 = "217,26"

	
 //Main Menu Item 17

	dqm__rollover_image17 = APP_context_path + "/images/menu_n/compania_b.gif" 
	dqm__rollover_wh17 = "217,26"
	dqm__url17 =APP_context_path + "/eurosurvey/index.html";   
	
 //Main Menu Item 18

	dqm__rollover_image18 = APP_context_path + "/images/menu_n/hojas_b.gif" 
	dqm__rollover_wh18 = "217,26"

	
 //Main Menu Item 19

	dqm__rollover_image19 = APP_context_path + "/images/menu_n/compania_b.gif" 
	dqm__rollover_wh19 = "217,26"
	dqm__url19 =APP_context_path + "/advisor/index.html";   
	
 //Main Menu Item 20

	dqm__rollover_image20 = APP_context_path + "/images/menu_n/hojas_b.gif" 
	dqm__rollover_wh20 = "217,26"
 	


/**********************************************************************************************
**********************************************************************************************

                              Sub Menu Structure and Text  

**********************************************************************************************
**********************************************************************************************/
   


    //Sub Menu 0


    dqm__sub_xy0 = "-50,3"
	dqm__sub_menu_width0 = 120
	

	dqm__subdesc0_0 = "Quienes Somos"
	dqm__subdesc0_1 = "Equiprograma"
	dqm__subdesc0_1_0 = "Colombia"
    dqm__subdesc0_1_1 = "Ecuador"
	dqm__subdesc0_2 = "Nuestros Valores"

	dqm__icon_index0_0 = 0
	dqm__icon_index0_1 = 0
	dqm__icon_index0_2 = 0
	
	dqm__2nd_icon_index0_0 = 0
	dqm__2nd_icon_index0_1 = 0
	
	dqm__url0_0 = APP_context_path + "/euroameRE/index.html"
	dqm__url0_1_0 = APP_context_path + "/euroameRE/equiprograma.htm"
	dqm__url0_1_1 = APP_context_path + "/euroameRE/equiprograma2.htm"
	dqm__url0_2 = APP_context_path + "/euroameRE/valores.htm"


    //Sub Menu 1

	dqm__sub_xy1 = "-50,3"
	dqm__sub_menu_width1 = 120

	dqm__subdesc1_0 = "Servicios"
	dqm__subdesc1_1 = "Area de Descarga"


	dqm__icon_index1_0 = 0
	dqm__icon_index1_1 = 0

	
	dqm__2nd_icon_index1_0 = 0
	dqm__2nd_icon_index1_1 = 0
	
	dqm__url1_0 = APP_context_path + "/euroameRE/servicios.htm"
	dqm__url1_1 =  "javascript:GetPassword()"


    //Sub Menu 2

	dqm__sub_xy2 = "-50,3"
	dqm__sub_menu_width2 = 150

	dqm__subdesc2_0 = "Reaseguradora Patria S.A." 
	dqm__subdesc2_1 = "Hannover Rückversicherung"
	dqm__subdesc2_2 = "Reaseguradora del Ecuador S.A. "
	dqm__subdesc2_3 = "Everest Reinsurance Co."
	dqm__subdesc2_4 = "Munich Re"	
	dqm__subdesc2_5 = "Odyssey America Reinsurance Corp."
	dqm__subdesc2_6 = "Scor Reinsurance Co. "
	

	dqm__icon_index2_0 = 0
	dqm__icon_index2_1 = 0
	dqm__icon_index2_2 = 0
	dqm__icon_index2_3 = 0
    dqm__icon_index2_4 = 0
    dqm__icon_index2_5 = 0
    dqm__icon_index2_6 = 0	
	
	
	dqm__url2_0 = APP_context_path + "/euroameRE/respaldo.htm"
	dqm__url2_1 = APP_context_path + "/euroameRE/respaldo1.htm"
   	dqm__url2_2 = APP_context_path + "/euroameRE/respaldo2.htm"
	dqm__url2_3 = APP_context_path + "/euroameRE/respaldo3.htm"
	dqm__url2_4 = APP_context_path + "/euroameRE/respaldo4.htm"
	dqm__url2_5 = APP_context_path + "/euroameRE/respaldo5.htm"
	dqm__url2_6 = APP_context_path + "/euroameRE/respaldo6.htm"	
	


  //Sub Menu 3

	dqm__sub_xy3 = "-50,3"
	dqm__sub_menu_width3 = 130
  
	dqm__subdesc3_0 = "Productos Tradicionales"
	dqm__subdesc3_1 = "Productos No Tradicionales"
	
	dqm__icon_index3_0 = 0
	dqm__icon_index3_1 = 0
	
	dqm__url3_0 = APP_context_path + "/euroameRE/portafolio.htm"
	dqm__url3_1 = APP_context_path + "/euroameRE/notradicionales.htm"
  
   //Sub Menu 4
	dqm__sub_xy4 = "-50,3"
	dqm__sub_menu_width4 = 130

    dqm__subdesc4_0 = "Indices financieros"
	dqm__subdesc4_1 = "Informacion financiera"
	
	dqm__icon_index4_0 = 0
	dqm__icon_index4_1 = 0
	
	dqm__url4_0 = APP_context_path + "/euroameRE/indicadores.htm"
	dqm__url4_1 = APP_context_path + "/euroameRE/indicadores1.htm"


//Sub Menu 5

	dqm__sub_xy5 = "-50,3"
	dqm__sub_menu_width5 = 100
	dqm__sub_xy5_0 = "-10,3"
	dqm__sub_menu_width5_0 = 170
	dqm__sub_xy5_1 = "-10,3"
	dqm__sub_menu_width5_1 = 170
  
	dqm__subdesc5_0 = "Colombia"
	dqm__subdesc5_0_0 = "Presidente"
	dqm__subdesc5_0_1 = "Gerente Internacional de Negocios"
	dqm__subdesc5_0_2 = "Vicepresidente Ejecutivo"
	dqm__subdesc5_0_3 = "Gerente Financiero"	
	dqm__subdesc5_0_4 = "Gerente de Negocios Colombia y Ecuador"	
	dqm__subdesc5_1 = "Ecuador"
	dqm__subdesc5_1_0 = "Presidente"
	dqm__subdesc5_1_1 = "Gerente General"
	dqm__subdesc5_1_2 = "Vicepresidente Ejecutivo"
	dqm__subdesc5_1_3 = "Director Financiero"	
	dqm__subdesc5_1_4 = "Gerente de Negocios Colombia y Ecuador"	

    dqm__icon_index5_0 = 0
	dqm__icon_index5_1 = 0
	dqm__icon_index5_2 = 0
	
	
	dqm__url5_0_0 = APP_context_path + "/euroameRE/hoja.htm"
	dqm__url5_0_1 = APP_context_path + "/euroameRE/hoja3a.htm"
	dqm__url5_0_2 = APP_context_path + "/euroameRE/hoja4.htm"
    dqm__url5_0_3 = APP_context_path + "/euroameRE/hoja5.htm"
	dqm__url5_0_4 = APP_context_path + "/euroameRE/hoja6.htm"


	dqm__url5_1_0 = APP_context_path + "/euroameRE/hoja.htm"
	dqm__url5_1_1 = APP_context_path + "/euroameRE/hoja3.htm"
	dqm__url5_1_2 = APP_context_path + "/euroameRE/hoja4.htm"
	dqm__url5_1_3 = APP_context_path + "/euroameRE/hoja2.htm"
	dqm__url5_1_4 = APP_context_path + "/euroameRE/hoja6.htm"
	
//Sub Menu 6


    dqm__sub_xy6 = "-50,3"
	dqm__sub_menu_width6 = 130

	dqm__subdesc6_0 = "Quienes Somos"
	dqm__subdesc6_1 = "Equiprograma"
	dqm__subdesc6_2 = "Nuestros Valores"

	dqm__icon_index6_0 = 0
	dqm__icon_index6_1 = 0
	dqm__icon_index6_2 = 0
	
	dqm__2nd_icon_index6_0 = 0
	dqm__2nd_icon_index6_1 = 0
	
	dqm__url6_0 = APP_context_path + "/euroinsurance/index.html"
	dqm__url6_1 = APP_context_path + "/euroinsurance/equiprograma.htm"
	dqm__url6_2 = APP_context_path + "/euroinsurance/valores.htm"
	
	//Sub Menu 7


    dqm__sub_xy7 = "-50,3"
	dqm__sub_menu_width6 = 120

	dqm__subdesc7_0 = "Quienes Somos"
	dqm__subdesc7_1 = "Equipograma"
	dqm__subdesc7_2 = "Nuestros Valores"

	dqm__icon_index7_0 = 0
	dqm__icon_index7_1 = 0
	dqm__icon_index7_2 = 0
	
	dqm__2nd_icon_index7_0 = 0
	dqm__2nd_icon_index7_1 = 0
	
	dqm__url7_0 = APP_context_path + "/eaprint/index.html"
	dqm__url7_1 = APP_context_path + "/eaprint/equiprograma.htm"
	dqm__url7_2 = APP_context_path + "/eaprint/valores.htm"
	
//Sub Menu 8

	dqm__sub_xy8 = "-50,3"
	dqm__sub_menu_width8 = 160
  
	dqm__subdesc8_0 = "Gerente General"
	dqm__subdesc8_1 = "Gerente Financiero"
	dqm__subdesc8_2 = "Director de Proyectos, Auditoria y Consultoría"


    dqm__icon_index8_0 = 0
	dqm__icon_index8_1 = 0
	dqm__icon_index8_2 = 0
	
	dqm__url8_0 = APP_context_path + "/eaprint/hoja1.htm"
	dqm__url8_1 = APP_context_path + "/eaprint/hoja3.htm"
	dqm__url8_2 = APP_context_path + "/eaprint/hoja2.htm"

//Sub Menu 9


    dqm__sub_xy9 = "-50,3"
	dqm__sub_menu_width9 = 120

	dqm__subdesc9_0 = "Quienes Somos"
	dqm__subdesc9_1 = "Equipograma"
	dqm__subdesc9_2 = "Nuestros Valores"

	dqm__icon_index9_0 = 0
	dqm__icon_index9_1 = 0
	dqm__icon_index9_2 = 0
	
	dqm__2nd_icon_index9_0 = 0
	dqm__2nd_icon_index9_1 = 0
	
	dqm__url9_0 = APP_context_path + "/capsecu/index.html"
	dqm__url9_1 = APP_context_path + "/capsecu/equiprograma.htm"
	dqm__url9_2 = APP_context_path + "/capsecu/valores.htm"
	
	//Sub Menu 10

	dqm__sub_xy10 = "-50,3"
	dqm__sub_menu_width10 = 160
  
	dqm__subdesc10_0 = "Gerente General"
	dqm__subdesc10_1 = "Gerente Financiero"
	dqm__subdesc10_2 = "Directora Comercial"
	dqm__subdesc10_3 = "Ejecutivo Comercial"	
	dqm__subdesc10_4 = "Supervisora de Operaciones"
	dqm__subdesc10_5 = "Analista Nuevos Riesgos y Siniestros"
	dqm__subdesc10_6 = "Analista de Riesgos"
	dqm__subdesc10_7 = "Ejecutivo de Emisión"	
	
    dqm__icon_index10_0 = 0
	dqm__icon_index10_1 = 0
	dqm__icon_index10_2 = 0
	
	dqm__url10_0 = APP_context_path + "/capsecu/hoja.htm"
	dqm__url10_1 = APP_context_path + "/capsecu/hoja2.htm"
	dqm__url10_2 = APP_context_path + "/capsecu/hoja1.htm"
	dqm__url10_3 = APP_context_path + "/capsecu/hoja7.htm"	
	dqm__url10_4 = APP_context_path + "/capsecu/hoja3.htm"
	dqm__url10_5 = APP_context_path + "/capsecu/hoja4.htm"
	dqm__url10_6 = APP_context_path + "/capsecu/hoja5.htm"
	dqm__url10_7 = APP_context_path + "/capsecu/hoja6.htm"		
	
	//Sub Menu 11


    dqm__sub_xy11 = "-50,3"
	dqm__sub_menu_width11 = 120

	dqm__subdesc11_0 = "Quienes Somos"
	dqm__subdesc11_1 = "Equipograma"
	dqm__subdesc11_2 = "Nuestros Valores"

	dqm__icon_index11_0 = 0
	dqm__icon_index11_1 = 0
	dqm__icon_index11_2 = 0
	
	dqm__2nd_icon_index11_0 = 0
	dqm__2nd_icon_index11_1 = 0
	
	dqm__url11_0 = APP_context_path + "/fruits/index.html"
	dqm__url11_1 = APP_context_path + "/fruits/equiprograma.htm"
	dqm__url11_2 = APP_context_path + "/fruits/valores.htm"
	
	
		//Sub Menu 12


    dqm__sub_xy12 = "-50,3"
	dqm__sub_menu_width12 = 170

	dqm__subdesc12_0 = "Gerente General"
	dqm__subdesc12_1 = "Gerente Financiero"
	dqm__subdesc12_2 = "Directora de Negocios"
	dqm__subdesc12_3 = "Servicios Generales"
	
	dqm__icon_index12_0 = 0
	dqm__icon_index12_1 = 0
	dqm__icon_index12_2 = 0
	
	dqm__2nd_icon_index12_0 = 0
	dqm__2nd_icon_index12_1 = 0
	
	dqm__url12_0 = APP_context_path + "/euroinsurance/hoja2.htm"
	dqm__url12_1 = APP_context_path + "/euroinsurance/hoja1.htm"
	dqm__url12_2 = APP_context_path + "/euroinsurance/hoja.htm"
	dqm__url12_3 = APP_context_path + "/euroinsurance/hoja3.htm"

		//Sub Menu 13


    dqm__sub_xy13 = "-50,3"
	dqm__sub_menu_width13 = 145

	dqm__subdesc13_0 = "Plotter Base Acuosa"
	dqm__subdesc13_1 = "Plotter Base Solvente"
	
	dqm__icon_index13_0 = 0
	dqm__icon_index13_1 = 0
	
	dqm__2nd_icon_index13_0 = 0
	dqm__2nd_icon_index13_1 = 0
	
	dqm__url13_0 = APP_context_path + "/eaprint/recurso.htm"
	dqm__url13_1 = APP_context_path + "/eaprint/recurso_1.htm"


 //Sub Menu 14


    dqm__sub_xy14 = "-50,3"
	dqm__sub_menu_width14 = 120
	

	dqm__subdesc14_0 = "Quienes Somos"
	dqm__subdesc14_1 = "Equiprograma"
	dqm__subdesc14_2 = "Nuestros Valores"


	dqm__icon_index14_0 = 0
	dqm__icon_index14_1 = 0
	dqm__icon_index14_2 = 0

	dqm__2nd_icon_index14_0 = 0
	dqm__2nd_icon_index14_1 = 0
	
	dqm__url14_0 = APP_context_path + "/euroconsulting/index.html"
	dqm__url14_1 = APP_context_path + "/euroconsulting/equiprograma.htm"
	dqm__url14_2 = APP_context_path + "/euroconsulting/valores.htm"
	
		
	//Sub Menu 15


    dqm__sub_xy15 = "-50,3"
	dqm__sub_menu_width15 = 180

	dqm__subdesc15_0 = "Gerente General"
	dqm__subdesc15_1 = "Gerente Financiero"
	dqm__subdesc15_2 = "Actuario"
	
	
	dqm__icon_index15_0 = 0
	dqm__icon_index15_1 = 0
	dqm__icon_index15_2 = 0
	
	dqm__2nd_icon_index15_0 = 0
	dqm__2nd_icon_index15_1 = 0
	
	dqm__url15_0 = APP_context_path + "/euroconsulting/hoja1.htm"
	dqm__url15_1 = APP_context_path + "/euroconsulting/hoja3.htm"
	dqm__url15_2 = APP_context_path + "/euroconsulting/hoja.htm"

	//Sub Menu 16


    dqm__sub_xy16 = "-50,3"
	dqm__sub_menu_width16 = 140

	dqm__subdesc16_0 = "Gerente General"
	dqm__subdesc16_1 = "Gerente Financiero"
	dqm__subdesc16_2 = "Directora Comercial "
	dqm__subdesc16_3 = "Directora de Logística"
	dqm__subdesc16_4 = "Asistente Dirección de Logística"
	
	dqm__icon_index16_0 = 0
	dqm__icon_index16_1 = 0
	dqm__icon_index16_2 = 0
	
	dqm__2nd_icon_index16_0 = 0
	dqm__2nd_icon_index16_1 = 0
	
	dqm__url16_0 = APP_context_path + "/fruits/hoja1.htm"
	dqm__url16_1 = APP_context_path + "/fruits/hoja2.htm"
	dqm__url16_2 = APP_context_path + "/fruits/hoja3.htm"
	dqm__url16_3 = APP_context_path + "/fruits/hoja4.htm"
	dqm__url16_4 = APP_context_path + "/fruits/hoja5.htm"


 //Sub Menu 17


    dqm__sub_xy17 = "-50,3"
	dqm__sub_menu_width17 = 120
	

	dqm__subdesc17_0 = "Quienes Somos"
	dqm__subdesc17_1 = "Equiprograma"
	dqm__subdesc17_2 = "Nuestros Valores"


	dqm__icon_index17_0 = 0
	dqm__icon_index17_1 = 0
	dqm__icon_index17_2 = 0

	dqm__2nd_icon_index17_0 = 0
	dqm__2nd_icon_index17_1 = 0
	
	dqm__url17_0 = APP_context_path + "/eurosurvey/index.html"
	dqm__url17_1 = APP_context_path + "/eurosurvey/equiprograma.htm"
	dqm__url17_2 = APP_context_path + "/eurosurvey/valores.htm"
	
	
		//Sub Menu 18


    dqm__sub_xy18 = "-50,3"
	dqm__sub_menu_width16 = 140

	dqm__subdesc18_0 = "Gerente General"
	dqm__subdesc18_1 = "Gerente Financiero"
	dqm__subdesc18_2 = "Analista de Siniestros y Nuevos Riesgos"
	dqm__subdesc18_3 = "Inspector Quito"

	
	dqm__icon_index18_0 = 0
	dqm__icon_index18_1 = 0
	dqm__icon_index18_2 = 0
	
	dqm__2nd_icon_index18_0 = 0
	dqm__2nd_icon_index18_1 = 0
	
	dqm__url18_0 = APP_context_path + "/eurosurvey/hoja1.htm"
	dqm__url18_1 = APP_context_path + "/eurosurvey/hoja2.htm"
	dqm__url18_2 = APP_context_path + "/eurosurvey/hoja3.htm"
	dqm__url18_3 = APP_context_path + "/eurosurvey/hoja4.htm"
	
 //Sub Menu 19


    dqm__sub_xy19 = "-50,3"
	dqm__sub_menu_width19 = 120
	

	dqm__subdesc19_0 = "Quienes Somos"
	dqm__subdesc19_1 = "Equiprograma"
	dqm__subdesc19_2 = "Nuestros Valores"


	dqm__icon_index19_0 = 0
	dqm__icon_index19_1 = 0
	dqm__icon_index19_2 = 0

	dqm__2nd_icon_index19_0 = 0
	dqm__2nd_icon_index19_1 = 0
	
	dqm__url19_0 = APP_context_path + "/advisor/index.html"
	dqm__url19_1 = APP_context_path + "/advisor/equiprograma.htm"
	dqm__url19_2 = APP_context_path + "/advisor/valores.htm"
	
	
		//Sub Menu 20


    dqm__sub_xy20 = "-50,3"
	dqm__sub_menu_width20 = 140

	dqm__subdesc20_0 = "Gerente General"
	dqm__subdesc20_1 = "Gerente Administrativo"
	dqm__subdesc20_2 = "Asesor"
	dqm__subdesc20_3 = "Asesor"
	dqm__subdesc20_4 = "Actuario"	

	
	dqm__icon_index20_0 = 0
	dqm__icon_index20_1 = 0
	dqm__icon_index20_2 = 0
	dqm__icon_index20_3 = 0
	dqm__icon_index20_4 = 0	
	
	dqm__2nd_icon_index20_0 = 0
	dqm__2nd_icon_index20_1 = 0
	
	dqm__url20_0 = APP_context_path + "/advisor/hoja1.htm"
	dqm__url20_1 = APP_context_path + "/advisor/hoja2.htm"
	dqm__url20_2 = APP_context_path + "/advisor/hoja3.htm"
	dqm__url20_3 = APP_context_path + "/advisor/hoja4.htm"
	dqm__url20_4 = APP_context_path + "/advisor/hoja5.htm"	

 //Sub Menu 21


    dqm__sub_xy21 = "-50,3"
	dqm__sub_menu_width21 = 120
	

	dqm__subdesc21_0 = "Quienes Somos"
	dqm__subdesc21_1 = "Equiprograma"
	dqm__subdesc21_2 = "Nuestros Valores"


	dqm__icon_index21_0 = 0
	dqm__icon_index21_1 = 0
	dqm__icon_index21_2 = 0

	dqm__2nd_icon_index21_0 = 0
	dqm__2nd_icon_index21_1 = 0
	
	dqm__url21_0 = APP_context_path + "/lakam/index.html"
	dqm__url21_1 = APP_context_path + "/lakam/equiprograma.htm"
	dqm__url21_2 = APP_context_path + "/lakam/valores.htm"

	
		//Sub Menu 22


    dqm__sub_xy22 = "-50,3"
	dqm__sub_menu_width20 = 140

	dqm__subdesc22_0 = "Gerente General"
	dqm__subdesc22_1 = "Director Financiero"
	dqm__subdesc22_2 = "Analista de Siniestros"
	dqm__subdesc22_3 = "Inspector de Siniestros - Quito"
	dqm__subdesc22_4 = "Inspector de Siniestros - Cuenca"
	dqm__subdesc22_5 = "Inspector de Siniestros - Guayaquil"	

	
	dqm__icon_index22_0 = 0
	dqm__icon_index22_1 = 0
	dqm__icon_index22_2 = 0
	dqm__icon_index22_3 = 0
	dqm__icon_index22_4 = 0	
	dqm__icon_index22_5 = 0		
	
	dqm__2nd_icon_index22_0 = 0
	dqm__2nd_icon_index22_1 = 0
	
	dqm__url22_0 = APP_context_path + "/lakam/hoja.htm"
	dqm__url22_1 = APP_context_path + "/lakam/hoja1.htm"
	dqm__url22_2 = APP_context_path + "/lakam/hoja2.htm"
	dqm__url22_3 = APP_context_path + "/lakam/hoja3.htm"
	dqm__url22_4 = APP_context_path + "/lakam/hoja4.htm"	
	dqm__url22_5 = APP_context_path + "/lakam/hoja5.htm"		
