/***********************************************
*	(c) Ger Versluis 2000 version 13.00 27 June 2004          *
*	You may use this script on non commercial sites.	          *
*	www.burmees.nl/menu			          *
*	You may remove all comments for faster loading	          *		
* (TT)Seelan - 2010-06-25 - Fix images in menu on website (Ticket #:2750)
* (TT)Seelan - 2010-10-26 - redirected to OGRA events.(Ticket #:2967)
* (TT)Seelan - 2010-11-11 - MEA event has been redirected to MEA other redirected to OGRA(Ticket #:2967)
* Gurpreet Kaur - 2010-11-17- changed url to MEA and OGRA  (Ticket #:2967)
* Tim Rogers   2010-12-20   Changed the eventRegOpenPage function to pass in the URL variable
* MCR 2010-12-23 Changed the crollbars and location properties to "yes" to display the menu bar and location toolbars
************************************************/
var NoOffFirstLineMenus = 8; 		// Number of main menu  items
// Colorvariables:
// Color variables take HTML predefined color names or "#rrggbb" strings
//For transparency make colors and border color ""
var LowBgColor = "#F7D262"; 		// Background color when mouse is not over
var HighBgColor = "#F7D262"; 		// Background color when mouse is over
var FontLowColor = "#0E6C0A"; 		// Font color when mouse is not over
var FontHighColor = "#33CC33";
var BorderColor = "#008818"; 		// Border color
var BorderWidthMain = 0; 		// Border width main items
var BorderWidthSub = 1; 		// Border width sub items
var BorderBtwnMain = 0; 		// Border width between elements main items
var BorderBtwnSub = 1; 		// Border width between elements sub items
var FontFamily = "arial"; // Font family menu items
var FontSize = 11; 			// Font size menu items
var FontBold = 0; 			// Bold menu items 1 or 0
var FontItalic = 0; 			// Italic menu items 1 or 0
var MenuTextCentered = "left"; 	// Item text position left, center or right
var MenuCentered = "left"; 		// Menu horizontal position can be: left, center, right
var MenuVerticalCentered = "top"; 	// Menu vertical position top, middle,bottom or static
var ChildOverlap = 0; 		// horizontal overlap child/ parent
var ChildVerticalOverlap = 0; 		// vertical overlap child/ parent
var StartTop = 85; 			// Menu offset x coordinate
var StartLeft = 210; 			// Menu offset y coordinate
var VerCorrect = 0; 			// Multiple frames y correction
var HorCorrect = 0; 			// Multiple frames x correction
var DistFrmFrameBrdr = 0; 		// Distance between main menu and frame border
var LeftPaddng = 10; 			// Left padding
var TopPaddng = 0; 			// Top padding. If set to -1 text is vertically centered
var FirstLineHorizontal = 1; 		// Number defines to which level the menu must unfold horizontal; 0 is all vertical
var MenuFramesVertical = 0; 		// Frames in cols or rows 1 or 0 
var DissapearDelay = 500; 		// delay before menu folds in
var UnfoldDelay = 50; 		// delay before sub unfolds	
var TakeOverBgColor = 1; 		// Menu frame takes over background color subitem frame
var FirstLineFrame = "space"; 		// Frame where first level appears
var SecLineFrame = "space"; 		// Frame where sub levels appear
var DocTargetFrame = "space"; 	// Frame where target documents appear
var TargetLoc = ""; 			// span id for relative positioning
var MenuWrap = 0; 			// enables/ disables menu wrap 1 or 0
var RightToLeft = 0; 			// enables/ disables right to left unfold 1 or 0
var BottomUp = 0; 			// enables/ disables Bottom up unfold 1 or 0
var UnfoldsOnClick = 0; 		// Level 1 unfolds onclick/ onmouseover
var BaseHref = ""; 			// BaseHref lets you specify the root directory for relative links. 
// The script precedes your relative links with BaseHref
// For instance: 
// when your BaseHref= "http://www.MyDomain/" and a link in the menu is "subdir/MyFile.htm",
// the script renders to: "http://www.MyDomain/subdir/MyFile.htm"
// Can also be used when you use images in the textfields of the menu
// "MenuX=new Array("<img src=\""+BaseHref+"MyImage\">"
// For testing on your harddisk use syntax like: BaseHref="file:///C|/MyFiles/Homepage/"
//(TT)Seelan - 2010-06-25
var Arrws = ["/images/arrow.gif", 10, 8, "/images/arrow.gif", 10, 8, "/images/arrow.gif", 10, 8, "/images/arrow.gif", 10, 8];

// Arrow source, width and height.
// If arrow images are not needed keep source ""

var MenuUsesFrames = 1; 		// MenuUsesFrames is only 0 when Main menu, submenus,
// document targets and script are in the same frame.
// In all other cases it must be 1

var RememberStatus = 0; 		// RememberStatus: When set to 1, menu unfolds to the presetted menu item. 
// When set to 2 only the relevant main item stays highligthed
// The preset is done by setting a variable in the head section of the target document.
// <head>
//	<script type="text/javascript">var SetMenu="2_2_1";</script>
// </head>
// 2_2_1 represents the menu item Menu2_2_1=new Array(.......

// Below some pretty useless effects, since only IE6+ supports them
// I provided 3 effects: MenuSlide, MenuShadow and MenuOpacity
// If you don't need MenuSlide just leave in the line var MenuSlide="";
// delete the other MenuSlide statements
// In general leave the MenuSlide you need in and delete the others.
// Above is also valid for MenuShadow and MenuOpacity
// You can also use other effects by specifying another filter for MenuShadow and MenuOpacity.
// You can add more filters by concanating the strings
var BuildOnDemand = 0; 		// 1/0 When set to 1 the sub menus are build when the parent is moused over
var BgImgLeftOffset = 5; 		// Only relevant when bg image is used as rollover
var ScaleMenu = 0; 			// 1/0 When set to 0 Menu scales with browser text size setting

var HooverBold = 0; 			// 1 or 0
var HooverItalic = 0; 			// 1 or 0
var HooverUnderLine = 0; 		// 1 or 0
var HooverTextSize = 0; 		// 0=off, number is font size difference on hoover
var HooverVariant = 0; 		// 1 or 0

var MenuSlide = "";
var MenuSlide = "";
var MenuSlide = "";

var MenuShadow = "";
var MenuShadow = "";
var MenuShadow = "";

var MenuOpacity = "";
var MenuOpacity = "";

function BeforeStart() { return }
function AfterBuild() { return }
function BeforeFirstOpen() { return }
function AfterCloseAll() { return }


//Tim Rogers   2010-12-20 - Changed the function so that the URL is passed in.
// (TT) Seelan 2010-01-21 - copied this function from ORGA 
//MCR 2010-12-23 Changed the crollbars and location properties to "yes" to display the menu bar and location toolbars
function eventRegOpenPage(URL, EVENT_ID, EVENT_SESSION, ORG_ID) {
  var width = 800;
  var height = 600;
  var winRef = null;

  var top;
  var left;
  top = (screen.height - height) / 2;
  left = (screen.width - width) / 2;

  window.open(URL + '?eventId=' + EVENT_ID + '&eventSession=' + EVENT_SESSION, "save", "location=yes, menubar=no, resizable=yes, scrollbars=yes, toolbar=yes, height=" + height + ", width=" + width + ", top=" + top + ", left=" + left);

}


// Menu tree:
// MenuX=new Array("ItemText","Link","background image",number of sub elements,height,width,"bgcolor","bghighcolor",
//	"fontcolor","fonthighcolor","bordercolor","fontfamily",fontsize,fontbold,fontitalic,"textalign","statustext");
// Color and font variables defined in the menu tree take precedence over the global variables
// Fontsize, fontbold and fontitalic are ignored when set to -1.
// For rollover images ItemText or background image format is:  "rollover?"+BaseHref+"Image1.jpg?"+BaseHref+"Image2.jpg" 

// Menu Item declarations are in the header, this is because asp variables were needed.
