
//UDMv--Updated 3.5 (with 3.4.1.1b elements)
//**DO NOT EDIT THIS *****
if (!exclude) { //********
//************************

///////////////////////////////////////////////////////////////////////////
//
//  ULTIMATE DROPDOWN MENU VERSION 3.5 by Brothercake
//  This is a special version for Dynamic Drive (http://www.dynamicdrive.com)
//
//  Link-wrapping routine by Brendan Armstrong
//  Original KDE modifications by David Joham
//  Opera reload/resize based on a routine by Michael Wallner
//  Select-element hiding routine by Huy Do
//
///////////////////////////////////////////////////////////////////////////


// *** POSITIONING AND STYLES *********************************************

menuALIGN = "left";		// alignment
absLEFT = 	0;		// absolute left or right position (if menu is left or right aligned)
absTOP = 	0; 		// absolute top position

staticMENU = false;		// static positioning mode (ie5,ie6 and ns4 only)

stretchMENU = false;		// show empty cells
showBORDERS = false;		// show empty cell borders

baseHREF = "http://www.interactivebrokers.com/scripts/common/";	// base path to .js files for the script (ie: resources/)
zORDER = 	1000;		// base z-order of nav structure (not ns4)

mCOLOR = 	"";	// main nav cell color  
rCOLOR = 	"#434A54";	// main nav cell rollover color  
bSIZE = 	1;		// main nav border size
bCOLOR = 	"";	// main nav border color
aLINK = 	"white";	// main nav link color
aHOVER = 	"#FFFFFF";	// main nav link hover-color (dual purpose)
aDEC = 	"none";		// main nav link decoration
fFONT = 	"Verdana, Arial, Helvetica, sans-serif";	// main nav font face
fSIZE = 	11;		// main nav font size (pixels)
fWEIGHT = 	"bold"		// main nav font weight
tINDENT = 	18;		// main nav text indent (if text is left or right aligned)
vPADDING = 	1;		// main nav vertical cell padding
vtOFFSET = 	0;		// main nav vertical text offset (+/- pixels from middle)

keepLIT =	true;		// keep rollover color when browsing menu
vOFFSET = 	5;		// shift the submenus vertically
hOFFSET = 	4;		// shift the submenus horizontally

smCOLOR = 	"#EBEEEE";	// submenu cell color

srCOLOR = 	"#636E7D";	// submenu cell rollover color
sbSIZE = 	1;		// submenu border size
sbCOLOR = 	"#666666"	// submenu border color
saLINK = 	"black";	// submenu link color
saHOVER = 	"white";		// submenu link hover-color (dual purpose)
saDEC = 	"none";		// submenu link decoration
sfFONT = 	"Verdana, Arial, Helvetica, sans-serif";// submenu font face
sfSIZE = 	9;		// submenu font size (pixels)
sfWEIGHT = 	"normal"	// submenu font weight
stINDENT = 	5;		// submenu text indent (if text is left or right aligned)
svPADDING = 1;		// submenu vertical cell padding
svtOFFSET = 0;		// submenu vertical text offset (+/- pixels from middle)

shSIZE =	0;		// submenu drop shadow size
shCOLOR =	"#999999";	// submenu drop shadow color
shOPACITY = 50;		// submenu drop shadow opacity (not ie4,ns4 or opera)

keepSubLIT = true;		// keep submenu rollover color when browsing child menu
chvOFFSET = -12;		// shift the child menus vertically
chhOFFSET = 7;		// shift the child menus horizontally

openTIMER = 0; // [** new **] menu opening delay time (not ns4/op5/op6)
openChildTIMER = 0; // [** new **] child-menu opening delay time (not ns4/op5/op6)
closeTIMER = 100;		// menu closing delay time

cellCLICK = true;		// links activate on TD click
aCURSOR = "hand";		// cursor for active links (not ns4 or opera)

altDISPLAY = "";		// where to display alt text
allowRESIZE = false;		// allow resize/reload

redGRID = false;		// show a black grid
gridWIDTH = 0;		// override grid width
gridHEIGHT = 0;		// override grid height
documentWIDTH = 0;		// override document width

hideSELECT = false;		// auto-hide select boxes when menus open (ie only)
allowForSCALING = false;	// allow for text scaling in mozilla 5

//new variables 3.5 version

allowPRINTING = false; // allow the navbar and menus to print (not ns4)
arrWIDTH = 10; // [** new **] arrow width (not ns4/op5/op6)
arrHEIGHT = 7; // [** new **] arrow height (not ns4/op5/op6)
arrHOFFSET = 0; // [** new **] arrow horizontal offset (not ns4/op5/op6)
arrVOFFSET = 0; // [** new **] arrow vertical offset (not ns4/op5/op6)
arrVALIGN = "middle"; // [** new **] arrow vertical align (not ns4/op5/op6)
arrLEFT = "subnav2.gif"; // [** new **] left arrow (not ns4/op5/op6)
arrRIGHT = "subnav2.gif"; // [** new **] right arrow (not ns4/op5/op6)
////////


// Open a new window
  var win = null;
  function NewWindow(mypage, myname, w, h, pos, infocus) {
    if (pos == "random") {
      myleft = (screen.width) ? Math.floor(Math.random() * (screen.width-w)):100;
      mytop = (screen.height) ? Math.floor(Math.random() * ((screen.height-h)-75)):100;
    }
    if (pos == "center") {
      myleft = (screen.width) ? (screen.width-w) / 2:100;
      mytop = (screen.height) ? (screen.height-h) / 2:100;
    } else if ((pos !='center' && pos != "random") || pos == null) {
      myleft = 0; mytop = 20
    }
    settings = "width=" + w + ", height=" + h + ",top=" + mytop + ",left=" + myleft + ", scrollbars=yes, location=no, directories=no, status=no, menubar=no, toolbar=no, resizable=yes";
    win = window.open(mypage, myname, settings);
    win.focus();
  }
  
  function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

  function MM_openWindow(theURL) { //v2.0
  window.open(theURL);
}

function MM_openBrWindow3(theURL,winName,features) { //v2.0
    	//document.location.replace("");
        window.open(theURL,winName,features); 
	if (document.getElementById("ticker")!=null) {
	    document.getElementById("ticker").src="tickerInit2.php";
	}
	loaded = false;
}

//Accueil ****************************************************

addMainItem("","Accueil",100,"left","","",0,0,"w");


	defineSubmenuProperties(160,"left","left",-4,0,"");
	addSubmenuItem("http://www.interactivebrokers.ca/fr/main.php","Canada","","");


	addSubmenuItem("http://www.interactivebrokers.com/ibg/main.php","Page Principale IB","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/ibglobal_sites.php?ib_entity=ca","IB dans le monde","","");


//Tarifs ****************************************************

addMainItem("","Tarifs",94,"left","","",0,0,"w");


	defineSubmenuProperties(160,"left","left",-4,0,"");
	addSubmenuItem("http://www.interactivebrokers.ca/fr/accounts/fees/commission.php?ib_entity=ca","Commissions","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/accounts/fees/interest.php?ib_entity=ca","Taux d'int&eacute;r&ecirc;ts","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/accounts/fees/marketData.php?ib_entity=ca","Donn&eacute;es de march&eacute;s","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/accounts/fees/otherFees.php?ib_entity=ca","Autres frais","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/accounts/fees/minimumDeposits.php?ib_entity=ca","Minimum requis","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/accounts/advisors/advisorWrapFees.php?ib_entity=ca","Gestionnaires de portefeuilles","","");


//N&eacute;gociation ****************************************************

addMainItem("","N&eacute;gociation",120,"left","","",0,0,"w");


	defineSubmenuProperties(180,"left","left",-4,0,"");
	addSubmenuItem("http://www.interactivebrokers.ca/fr/general/education/highlights.php?p=p&ib_entity=ca","Essentiels IB","","");


	addSubmenuItem("","Produits","","");


		defineChildmenuProperties(200,"left","left",0,-20,"");
		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/products.php?pdt=OPT&ib_entity=ca","Options sur actions et sur indices","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/products.php?pdt=FUT&ib_entity=ca","Contrats &agrave; terme","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/products.php?pdt=FOP&ib_entity=ca","Options sur contrats &agrave; terme","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/products.php?pdt=STK&ib_entity=ca","Actions","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/shortableStocks.php?ib_entity=ca","Actions n&eacute;gociables &agrave; d&eacute;couvert","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/products.php?pdt=ETF&ib_entity=ca","Fonds Indiciels (ETFs)","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/products.php?pdt=WAR&ib_entity=ca","Warrants","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/products.php?pdt=VWAP&ib_entity=ca","Actions VWAP","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/products.php?pdt=SSF&ib_entity=ca","Contrats &agrave; terme sur actions","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/products.php?pdt=FX&ib_entity=ca","Devises (Forex)","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/products.php?pdt=IND&ib_entity=ca","Indices","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/products.php?pdt=BOND&ib_entity=ca","Obligations","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/trading/products.php?ib_entity=ca","Bourses et March&eacute;s","","");


	addSubmenuItem("javascript:NewWindow('http://www.interactivebrokers.co.uk/contract_info/index.php?site=IB',600,700,'custom','front')","Base de donn&eacute;es produits","","");



	addSubmenuItem("","Les ordres","","");


		defineChildmenuProperties(240,"left","left",0,-20,"");
		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/orderTypesMatrix.php?ib_entity=ca","Types d'ordres","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/orderRoutingLogics.php?ib_entity=ca","Logique de routage","","");



	addSubmenuItem("","Les marges","","");


		defineChildmenuProperties(240,"left","left",-65,-20,"");
		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/marginRequirements/fundamentals.php?ib_entity=ca","G&eacute;n&eacute;ralit&eacute;s","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/marginRequirements/marginRequirementsUs.php?ib_entity=ca","Actions US, Europe, Asie","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/marginRequirements/canadianStocksCA.php?ib_entity=ca","Actions canadiennes","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/marginRequirements/stockIndexOptions.php?ib_entity=ca","Options am&eacute;ricaines","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/marginRequirements/CAStockIndexOptions.php?ib_entity=ca","Options canadiennes","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/marginRequirements/futuresOptionsRequirements.php?ib_entity=ca","Autres march&eacute;s options","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/marginRequirements/bondsMargin.php?ib_entity=ca","Obligations am&eacute;ricaines","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/marginRequirements/margin_amer.php?ib_entity=ca","Contrats &agrave; terme ","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/marginRequirements/futuresMargin.php?ib_entity=ca","Horaires de bascule intraday/overnight","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/marginRequirements/singleStockFuturesMargin.php?ib_entity=ca","Contrat &agrave; terme sur actions US","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/marginRequirements/otherFutures.php?ib_entity=ca","Options sur contrats &agrave; terme","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/marginRequirements/currency.php?ib_entity=ca","Devises (Forex)","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/marginRequirements/patternDayTraders.php?ib_entity=ca","Day Trading : r&eacute;glementation","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/trading/marginRequirements/physicalDeliveryLiquidationRules.php?ib_entity=ca","Livraisons des contrats &agrave; terme","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/trading/exerciseCloseout.php?ib_entity=ca","Exercise des Options","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/trading/voluntaryCorpAction.php?ib_entity=ca","Op&eacute;rations sur titres","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/trading/holidayAndExpirationCalendar.php?ib_entity=ca","Calendrier du n&eacute;gociateur","","");


//Comptes ****************************************************

addMainItem("","Comptes",120,"left","","",0,0,"w");


	defineSubmenuProperties(220,"left","left",-4,0,"");
	addSubmenuItem("","Essentiels IB","","");


		defineChildmenuProperties(145,"left","left",0,-20,"");
		addChildmenuItem("http://www.interactivebrokers.ca/fr/accounts/universalAccount.php?ib_entity=ca","Compte Universel IB","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/accounts/pdfhighlights/PDF-IBprime.php?ib_entity=ca","IBPrime","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/accounts/PDF-acctMgmt.php?ib_entity=ca","Gestion de compte","","");



	addSubmenuItem("","Ouvrir un compte","","");


		defineChildmenuProperties(145,"left","left",0,-20,"");
		addChildmenuItem("http://www.interactivebrokers.ca/fr/accounts/individuals/individualMain.php?ib_entity=ca","Comptes Individus","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/accounts/advisors/advisorsMain.php?ib_entity=ca","Comptes Conseillers","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/accounts/institutions/institutionalMain.php?ib_entity=ca","Comptes Institutionnels","","");


	addSubmenuItem("https://www.interactivebrokers.com/Universal/servlet/AccountAccess.Login?c=t","Compl&eacute;ter l'ouverture d'un compte","_blank","");



	addSubmenuItem("","Configuration des comptes","","");


		defineChildmenuProperties(200,"left","left",0,-20,"");
		addChildmenuItem("http://www.interactivebrokers.ca/fr/accounts/customerClasses.php?ib_entity=ca","Cat&eacute;gories de clients","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/tradingConfiguration.php?p=t&ib_entity=ca","Acc&egrave;s &agrave; la n&eacute;gociation","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/accounts/fees/marketData.php?ib_entity=ca","Acc&egrave;s aux donn&eacute;es de march&eacute;s","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/accounts/baseCurrency.php?ib_entity=ca","Devise de r&eacute;f&eacute;rence du compte","","");



	addSubmenuItem("","Gestion financi&egrave;re des comptes","","");


		defineChildmenuProperties(145,"left","left",0,-20,"");
		addChildmenuItem("http://www.interactivebrokers.ca/fr/accounts/depositInstructions.php?ib_entity=ca","D&eacute;p&ocirc;ts et transferts","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/accounts/withdrawalInstructions.php?ib_entity=ca","Retraits","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/p.php?f=funding&p=s&ib_entity=ca","Instructions de r&egrave;glement","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/accounts/dvp.php?ib_entity=ca","Instructions DVP/CMTA","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/accounts/fundsStatus.php?ib_entity=ca","Statut des retraits/d&eacute;p&ocirc;ts","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/p.php?f=security&p=s&ib_entity=ca","Programme de s&eacute;curit&eacute;","","");



	addSubmenuItem("http://www.interactivebrokers.ca/fr/accounts/accountFunctions.php?ib_entity=ca","Fonctions de la Gestion de Compte ","","");



	addSubmenuItem("","Relev&eacute;s de comptes et rapports","","");


		defineChildmenuProperties(220,"left","left",0,-20,"");
		addChildmenuItem("http://www.interactivebrokers.ca/fr/accounts/statements.php?ib_entity=ca","Relev&eacute;s de comptes","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/accounts/trade_confirmations.php?ib_entity=ca","Confirmation des op&eacute;rations en temps r&eacute;el","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/accounts/statements.php?p=f&b_entity=ca","FlexStatement","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/p.php?f=legalDocs&p=t&ib_entity=ca","Formulaires fiscaux","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/p.php?f=tax&ib_entity=ca","Information fiscale","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/accounts/quickenMoney.php?ib_entity=ca","T&eacute;l&eacute;chargements","","");



	addSubmenuItem("http://www.interactivebrokers.ca/fr/p.php?f=whitebranding&ib_entity=ca","Conseillers/Courtiers","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/accounts/individuals/ageRequirements.php?ib_entity=ca","&Acirc;ge minimum","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/accounts/closingAccount.php?ib_entity=ca","Fermeture de compte","","");



	addSubmenuItem("","Formulaires et notes l&eacute;gales","","");


		defineChildmenuProperties(200,"left","left",0,-20,"");
		addChildmenuItem("http://www.interactivebrokers.ca/fr/p.php?f=legalDocs&ib_entity=ca","Ententes clients","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/p.php?f=legalDocs&p=d&ib_entity=ca","Notes r&eacute;glementaires","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/p.php?f=legalDocs&ib_entity=ca","Contrats \&quot;Donn&eacute;es de march&eacute;s\&quot;","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/p.php?f=legalDocs&p=c&ib_entity=ca","Formulaires IB Canada","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/p.php?f=legalDocs&p=t&ib_entity=ca","Formulaires fiscaux","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/p.php?f=legalDocs&p=cs&ib_entity=ca","Formulaires service clients","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/p.php?f=legalDocs&p=i&ib_entity=ca","Documents d'identit&eacute;","","");


//Technologie ****************************************************

addMainItem("","Technologie",126,"left","","",0,0,"w");


	defineSubmenuProperties(200,"left","left",-4,0,"");
	addSubmenuItem("","Essentiels IB","","");


		defineChildmenuProperties(220,"left","left",0,-20,"");
		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/pdfhighlights/PDF-TWS.php?ib_entity=ca","Trader Workstation","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/pdfhighlights/PDF-TwsConf.php?ib_entity=ca","Configuration TWS","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/pdfhighlights/PDF-PriceRisk.php?ib_entity=ca","Price/Risk Analytics","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/pdfhighlights/PDF-TechAnalytics.php?ib_entity=ca","Analyse Technique","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/pdfhighlights/PDF-FundAnalytics.php?ib_entity=ca","Fundamental Analytics","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/pdfhighlights/PDF-OptionTrader.php?ib_entity=ca","OptionTrader","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/pdfhighlights/PDF-SpreadTraderFutures.php?ib_entity=ca","SpreadTrader","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/pdfhighlights/PDF-ComboTrader.php?ib_entity=ca","ComboTrader","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/pdfhighlights/PDF-ChartTrader.php?ib_entity=ca","ChartTrader","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/pdfhighlights/PDF-BookTrader.php?ib_entity=ca","BookTrader","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/pdfhighlights/PDF-BasketTrader.php?ib_entity=ca","BasketTrader","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/pdfhighlights/PDF-PaperTrader.php?ib_entity=ca","PaperTrader","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/pdfhighlights/PDF-MarketDepthTrader.php?ib_entity=ca","MarketDepthTrader","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/pdfhighlights/PDF-PortfolioTrader.php?ib_entity=ca","PortfolioTrader","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/pdfhighlights/PDF-FxTrader.php?ib_entity=ca","FXTrader","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/pdfhighlights/PDF-AdvisorAllocations.php?ib_entity=ca","Allocations Conseillers","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/highlights/apiHighlights.php?ib_entity=ca","Interfa&ccedil;ages Applicatifs (API)","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/pdfhighlights/PDF-FIX.php?ib_entity=ca","CTCI/FIX","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/pdfhighlights/PDF-WebTrader.php?ib_entity=ca","WebTrader","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/pdfhighlights/PDF-MobileTrader.php?ib_entity=ca","MobileTrader","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/pdfhighlights/PDF-CAM.php?ib_entity=ca","Customer Activity Monitor","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/pdfhighlights/PDF-RealTimeActivityMonitoring.php?ib_entity=ca","Outils de supervision des comptes clients","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/pdfhighlights/PDF-IBalgos.php?ib_entity=ca","IBAlgos","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/pdfhighlights/PDF-PostTrade.php?ib_entity=ca","Allocations Post Trade","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/pdfhighlights/PDF-ArbTrader.php?ib_entity=ca","Merger Arb Trader","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/accounts/rd.php?ib_entity=ca","Tours Interactifs","","");


		defineChildmenuProperties(200,"left","left",0,-20,"");
		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/intro.swf","TWS","_blank","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/analyticsintro.swf","Interactive Analytics","_blank","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/ordertypesintro.swf","Types d'ordres","_blank","");


		addChildmenuItem("http://www.interactivebrokers.ca/images/flash/apiTutorial/APIintro.swf","Interfa&ccedil;ages Applicatifs pour la TWS","_blank","");


		addChildmenuItem("http://www.interactivebrokers.ca/images/flash/workspaceTutorial/GCintro.swf","Configuration de la TWS","_blank","");


		addChildmenuItem("http://www.interactivebrokers.ca/images/flash/advisorTutorial/ADintro.swf","TWS pour conseillers","_blank","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/p.php?f=tws&ib_entity=ca","Trader Workstation","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/p.php?f=programInterface&ib_entity=ca","Interfa&ccedil;ages Applicatifs (API)","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/p.php?f=webtrader&ib_entity=ca","WebTrader","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/p.php?f=mobiletrader&ib_entity=ca","MobileTrader","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/p.php?f=cam&ib_entity=ca","Customer Activity Monitor (CAM)","","");


	addSubmenuItem("","Autres Applications","","");


		defineChildmenuProperties(180,"left","left",0,-20,"");
		addChildmenuItem("http://www.interactivebrokers.ca/fr/software/reutersBridgeChannel.php?ib_entity=ca","Nouvelles Reuters","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/general/poll/ibconsultants.php?progid=11&ib_entity=ca","Logiciels commerciaux","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/general/poll/ibconsultants.php?progid=12&ib_entity=ca","Logiciels gratuits","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/general/poll/ibconsultants.php?progid=10&ib_entity=ca","Consultants en programmation","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/p.php?f=bandwidth&ib_entity=ca","Bande passante vers les bourses","","");


//&Eacute;ducation ****************************************************

addMainItem("","&Eacute;ducation",120,"left","","",0,0,"w");


	defineSubmenuProperties(250,"left","left",-4,0,"");
	addSubmenuItem("http://www.interactivebrokers.ca/optionsCommentary/index.php?ib_entity=ca","Rapport d'Activit&eacute; options et contrats &agrave; terme","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/general/education/FX-View.php?ib_entity=ca","FX View","","");


	addSubmenuItem("","Webinars","","");


		defineChildmenuProperties(220,"left","left",0,-20,"");
		addChildmenuItem("http://www.interactivebrokers.ca/fr/general/education/ibSeminar.php?ib_entity=ca","Webinars &agrave; venir","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/general/education/frenchWebinars.php?ib_entity=ca","Webinars archiv&eacute;s","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/software/twsTutorial.php?ib_entity=ca","Guides interactifs","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/p.php?f=exchangesEdu&ib_entity=ca","Bourses et March&eacute;s","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/p.php?f=productsEdu&ib_entity=ca","Produits","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/p.php?f=ibchat_bb&ib_entity=ca","Forums clients","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/general/education/IBStudentTradingLab.php?ib_entity=ca","IB le Laboratoire de Trading","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/p.php?f=liveEvents&ib_entity=ca","&Eacute;v&egrave;nements en direct","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/general/poll/ibconsultants.php?progid=13&ib_entity=ca","Formateurs externes","","");


//&Agrave; propos d'IB ****************************************************

addMainItem("","&Agrave; propos d'IB",120,"left","","",0,0,"w");


	defineSubmenuProperties(180,"left","left",-4,0,"");
	addSubmenuItem("http://www.interactivebrokers.ca/fr/general/about/aboutCA.php?ib_entity=ca","Interactive Brokers Canada","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/general/about/about.php?ib_entity=ca","Historique","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/accounts/smart.php?ib_entity=ca","Pourquoi IB?","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/general/about/ibgStrengthCA.php?ib_entity=ca","Solidit&eacute;","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/general/poll/poll.php?ib_entity=ca","Sondage clients","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/general/contact/feedbackForm.php?ib_entity=ca","Suggestions & plaintes","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/p.php?f=news&ib_entity=ca","Infos IB","","");


	addSubmenuItem("","M&eacute;dia","","");


		defineChildmenuProperties(240,"left","left",0,-345,"");
		addChildmenuItem("http://www.interactivebrokers.ca/fr/general/about/mediaRelations/ibInPressArticles2.php?ib_entity=ca","Articles r&eacute;cents","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/general/about/mediaRelations/mediaContact.php?ib_entity=ca","Contacts","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/general/about/mediaRelations/ibInPress.php?ib_entity=ca","D&eacute;p&ecirc;ches","","");


		addChildmenuItem("http://www.interactivebrokers.ca/optionsCommentary/index.php?ib_entity=ca","Rapport d'Activit&eacute; options et contrats &agrave; terme","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/general/about/factSheet2004.php?ib_entity=ca","Essentiels IB","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/general/about/commentLetters.php?ib_entity=ca","Lettres & commentaires","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/accounts/legalDocuments/brokerPerformanceReports.php?ib_entity=ca","Rapports d'activit&eacute;","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/general/about/financialsCA.php?ib_entity=ca","&Eacute;tats Financiers","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/general/about/ratingSandP.php?ib_entity=ca","Note S&P","","");


	addSubmenuItem("http://interactivebrokers.hrmdirect.com/employment/index.php","Carri&egrave;res","_blank","");


//Contacts ****************************************************

addMainItem("","Contacts",150,"left","","",0,0,"w");


	defineSubmenuProperties(200,"left","left",-4,-52,"");
	addSubmenuItem("","Service Clients","","");


		defineChildmenuProperties(177,"left","left",0,-345,"");
		addChildmenuItem("http://www.interactivebrokers.ca/fr/general/contact/contact.php?ib_entity=ca","Coordonn&eacute;es","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/general/contact/bestService.php?ib_entity=ca","Comment contacter IB?","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/general/contact/bustPolicy.php?ib_entity=ca","Transactions erronn&eacute;es","","");


	addSubmenuItem("","Service Institutionnel","","");


		defineChildmenuProperties(245,"left","left",0,-345,"");
		addChildmenuItem("http://www.interactivebrokers.ca/fr/general/contact/contact.php?ib_entity=ca","Comptes individus/conseillers F&F","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/general/contact/contactSales.php?ib_entity=ca","Comptes conseillers Pro, institutions, courtiers","","");


	addSubmenuItem("","FAQs","","");


		defineChildmenuProperties(177,"left","left",0,-345,"");
		addChildmenuItem("http://www.interactivebrokers.ca/fr/general/education/faqs/canadaFAQs.php?ib_entity=ca","Questions fr&eacute;quentes IB Canada","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/p.php?f=faq&ib_entity=ca","Autres Questions fr&eacute;quentes","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/general/contact/tipsContractsDatabaseSearch.php?ib_entity=ca","Base de donn&eacute;es produits","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/general/contact/documentSubmission.php?ib_entity=ca","Addresses","","");


	addSubmenuItem("http://www.interactivebrokers.ca/fr/software/systemStatus.php?ib_entity=ca","&Eacute;tat des syst&egrave;mes","","");


	addSubmenuItem("http://ibkb.interactivebrokers.com","Base de Connaissance","_blank","");


	addSubmenuItem("","Calendriers","","");


		defineChildmenuProperties(177,"left","left",0,-345,"");
		addChildmenuItem("javascript:NewWindow('http://www.interactivebrokers.ca/cal/cal.php?runthis=view_all',925,825,'custom','front')","Calendrier des &eacute;v&eacute;nements","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/general/currencyHoliday.php?ib_entity=ca","Devises (Forex)","","");


		addChildmenuItem("http://www.interactivebrokers.ca/fr/trading/holidayAndExpirationCalendar.php?ib_entity=ca","Calendrier de n&eacute;gociation","","");



}

//**line-height switch ****************************************
var lineHeightSwitch=false;
//**DO NOT EDIT THIS ******************************************
if(!exclude){var d=document;var mrSize,srSize;if(typeof fSIZE=="number"){mrSize=fSIZE+"px";}else {if(fSIZE=="x-small"){mrSize="xx-small";if(com){mrSize="x-small";}fSIZE=10;}else if(fSIZE=="small") {mrSize="x-small";if(com){mrSize="small";}fSIZE=13;}else if(fSIZE=="medium"){mrSize="small";if(com){mrSize="medium";}fSIZE=16;}else if(fSIZE=="large"){mrSize="medium";if(com){mrSize="large";}fSIZE=19;}else if(fSIZE=="x-large"){mrSize="large";if(com){mrSize="x-large";}fSIZE=24;}else {mrSize="x-small";if(com){mrSize="small";}fSIZE=13;}}if(menuALIGN=="free"){mrSize=fSIZE+"px";}if(typeof sfSIZE=="number"){srSize=sfSIZE+"px";}else {if(sfSIZE=="x-small"){srSize="xx-small";if(com){srSize="x-small";}sfSIZE=10;}else if(sfSIZE=="small") {srSize="x-small";if(com){srSize="small";}sfSIZE=13;}else if(sfSIZE=="medium"){srSize="small";if(com){srSize="medium";}sfSIZE=16;}else if(sfSIZE=="large"){srSize="medium";if(com){srSize="large";}sfSIZE=19;}else if(sfSIZE=="x-large"){srSize="large";if(com){srSize="x-large";}sfSIZE=24;}else{srSize="x-small";if(com){srSize="small";}sfSIZE=13;}}if(menuALIGN=="free"){srSize=sfSIZE+"px";}if((!mac&&ns4)||(mac&&op5)){fSIZE+=1;sfSIZE+=1;}if(lin&&op7){fSIZE-=2;sfSIZE-=2;}if(bSIZE<0)bSIZE=0;if(fSIZE<5)fSIZE=5;if(tINDENT<0)tINDENT=0;if(vPADDING<1)vPADDING=1;if(sbSIZE<0)sbSIZE=0;if(sfSIZE<5) sfSIZE=5;if(stINDENT<0)stINDENT=0;if(svPADDING<0)svPADDING=0;if(fWEIGHT=="")fWEIGHT="normal";if(sfWEIGHT=="")sfWEIGHT="normal";if(shSIZE<0){shSIZE=0;}if(menuALIGN=="virtual"){remoteTRIGGERING=1;menuALIGN="left";if(ns4||op5||op6||(mac&&ie5)){if(allowRESIZE==mu){allowRESIZE=true;}}else {if(allowRESIZE==mu){allowRESIZE=false;}}staticMENU=0;}if(ns4&&shCOLOR==""){shCOLOR="#cccccc";shSIZE=0;}var sty='';sty+='<style type="text/css"><!--';sty+='.mTD,.mTD A:Link,.mTD A:Visited \{color:'+aLINK+'\}';sty+='.mTD,.mTD A \{';if(!ns4){sty+='white-space:nowrap\;';}sty+='color:'+aLINK+'\;font-weight:'+fWEIGHT+'\;\}';sty+='.mTD,.mTD A:Active,.mTD A:Link,.mTD A:Visited,.mTD A:Hover\{font-weight:'+fWEIGHT+'\;font-size:'+fSIZE+'px\;font-family:'+fFONT+'\;text-decoration:'+aDEC+'\;';if(!ns4){sty+='position:relative\;';}sty+='\}';sty+='.SUBmTD,.SUBmTD A \{';if(!ns4){sty+='white-space:nowrap\;';}sty+='color:'+saLINK+'\;font-weight:'+sfWEIGHT+'\;\}';sty+='.SUBmTD,.SUBmTD A:Link,.SUBmTD A:Visited \{color:'+saLINK+'\}';sty+='.SUBmTD,.SUBmTD A:Active,.SUBmTD A:Link,.SUBmTD A:Visited,.SUBmTD A:Hover\{font-weight:'+sfWEIGHT+'\;font-size:'+sfSIZE+'px\;font-family:'+sfFONT+'\;text-decoration:'+saDEC+'\;\}';if(lineHeightSwitch){if(ie){sty+='#udm-n,#udm-navbar,.restore,.printhide,.linkspan,#underb td,#mas span{line-height:100%\;\}';}if(ns4){sty+='.restore span,.restore div,.restore td{line-height:100%\;\}';}if(ns6||mz7||op7){sty+='.printhide div,.mTD span,.SUBmTD span{line-height:100%\;\}';}if(op6){sty+='.printhide td{line-height:100%\;\}';}if(op5){sty+='.printhide td,.printhide span{line-height:100%\;\}';}}if(win&&ie5){sty+='.u\{text-decoration:underline\;\}';}
//*************************************************************
//****##### USE THIS SPACE FOR NEW STYLE DEFINITIONS #####*****

//** DO NOT EDIT THIS ****************************************
sty+='//--></style>';if(!allowPRINTING&&!ns4&&!(mac&&ie4)&&!kde&&!ice&&!saf){sty+='<style type="text/css" media="print">';sty+='.printhide \{display:none\;\}';sty+='</style>';}d.write(sty);};

function genericOnloadFunction(){menuReadyState=1;
//*************************************************************
//****##### USE THIS SPACE TO DEFINE ONLOAD FUNCTIONS #####****

//** DO NOT EDIT THIS *****************************************
if(ns4){nsinit();}
}
//*************************************************************
