/*-------------------------------------------
Copyright Notice
--------------------------------------------*/

   DQM_Notice = "DHTML QuickMenu, Copyright (c) - 2001, OpenCube Inc. - www.opencube.com"
   


/*-------------------------------------------
Required menu Settings
--------------------------------------------*/

   DQM_sub_menu_width = 190

  
   DQM_urltarget = "_self"
   
   DQM_onload_statement = ""
   DQM_codebase = ""

   DQM_border_color = "#979797"
   
   DQM_menu_bgcolor = "#F2F4F3"
   DQM_hl_bgcolor = "#E5E5E5"

   DQM_sub_xy = "0,0"
   DQM_border_width = 1
   DQM_divider_height = 1

   /*---IE5-MAC Offset Fix - The following two
   -----parameters correct a position reporting
   -----bug in IE5 on the Mac platform. Adjust
   -----the offsets below untill the first level
   -----sub menus pop up in the correct location.*/
   
   DQM_ie5mac_offset_X = 10
   DQM_ie5mac_offset_Y = 12


/*-------------------------------------------
Required font Settings
--------------------------------------------*/
   

   DQM_textcolor = "#7D7D7D"
   DQM_fontfamily = "verdana"
   DQM_fontsize = 11
   DQM_textdecoration = "normal"
   DQM_fontweight = "normal"
   DQM_fontstyle = "normal"
   DQM_hl_textcolor = "black"
   DQM_hl_textdecoration = "normal"

   DQM_margin_top = 3
   DQM_margin_bottom = 3
   DQM_margin_left = 5



/*-------------------------------------------
Optional main menu rollover images
--------------------------------------------*/
  
   DQM_rollover_image0 = "../page/image/menu/m1on_de.png"
   DQM_rollover_wh0 = "94,32"

   DQM_rollover_image1 = "../page/image/menu/m2on_de.png"
   DQM_rollover_wh1 = "112,32"

   DQM_rollover_image2 = "../page/image/menu/m3on_de.png" 
   DQM_rollover_wh2 = "81,32"

   DQM_rollover_image3 = "../page/image/menu/m4on_de.png" 
   DQM_rollover_wh3 = "165,32"
  

/*---------------------------------------------
Optional Icon Images
-----------------------------------------------*/

   DQM_icon_image0 = "sample_images/bullet.gif"
   DQM_icon_rollover0 = "sample_images/bullet_hl.gif"
   DQM_icon_image_wh0 = "13,8"


/*---------------------------------------------
Sub Menu Item Settings
-----------------------------------------------*/
//--- Produktion -------
DQM_sub_xy0 = "-94,28"
DQM_sub_menu_width0 = 110
DQM_subdesc0_0 = "Spinnerei"
DQM_subdesc0_1 = "Weberei"
DQM_subdesc0_2 = "Veredelung"
DQM_icon_index0_0 = 1
DQM_icon_index0_1 = 1
DQM_icon_index0_2 = 1
DQM_url0_0 = "../page/sp_fac_de.htm"
DQM_url0_1 = "../page/weav_fac_de.htm"
DQM_url0_2 = "../page/decor_fac_de.htm"
//--- Design Studio -----
DQM_sub_xy1 = "-112,28"
DQM_sub_menu_width1 = 140
DQM_subdesc1_0 = "Design Studio" 
//DQM_subdesc1_1 = "Schablonenwerkstatt"
DQM_icon_index1_0 = 1
//DQM_icon_index1_1 = 1
DQM_url1_0 = "../page/design_de.htm"
//DQM_url1_1 = "../page/template_de.htm"
//--- Produktion --------
DQM_sub_xy2 = "-81,28"
DQM_sub_menu_width2 = 260;
DQM_subdesc2_0 = "Produktionssortiment"
DQM_subdesc2_1 = "Technologische Veredelungsmoglichkeiten"
DQM_icon_index2_0 = 1
DQM_icon_index2_1 = 1
DQM_url2_0 = "../page/assortment_de.htm"
DQM_url2_1 = "../page/decor_de.htm"
//--- Über unsere Gesellschaft-----
DQM_sub_xy3 = "-165,28"
DQM_sub_menu_width3 = 165
DQM_subdesc3_0 = "Über unsere Gesellschaft"
DQM_icon_index3_0 = 1
DQM_url3_0 = "../page/company_de.htm"


function goToPage(p,w,h) {
var x_scr = screen.width;
var y_scr = screen.height;
x_scr = x_scr / 2 - w/2;
y_scr = y_scr/2 - h/2;
WinPic = open(p,"dw",'width='+w+',height='+h+',status=no,toolbar=no,menubar=no,location=no,resizable=no,left='+x_scr+',top='+y_scr);
}

function viewpic(img,txt,ww,hh) {
var im = 'image/'+img;
var x_scr = screen.width;
var y_scr = screen.height;
var w = ww+40;
var h = hh+60;

x_scr = x_scr / 2 - w/2;
y_scr = y_scr/2 - h/2;

WinPic = open("","dw",'width='+w+',height='+h+',status=no,toolbar=no,menubar=no,location=no,resizable=no,left='+x_scr+',top='+y_scr);
WinPic.document.write("<html><head><title>Viewing picture");
WinPic.document.write("</title></head><body onBlur='javascript:close();'><center>");
WinPic.document.write("<img src="+im+" border=0>");
WinPic.document.write("<br><br><font color='#000000' size='2' face='Arial, Helvetica, sans-serif'>"+txt+"</font>");
WinPic.document.write("</center></body></html>");
WinPic.document.close();
WinPic.focus();
WinPic.document.title="Viewing picture";
}	