//General
//for example: instead of each module writing out script found in moduleMaxMin_OnClick have the functionality cached
//

var DNN_COL_DELIMITER = String.fromCharCode(16);
var DNN_ROW_DELIMITER = String.fromCharCode(15);
var __dnn_m_bPageLoaded = false;

window.onload = __dnn_Page_OnLoad;

function __dnn_ClientAPIEnabled()
{
	return typeof(dnn) != 'undefined';
}


function __dnn_Page_OnLoad()
{
	if (__dnn_ClientAPIEnabled())
	{
		var sLoadHandlers = dnn.getVar('__dnn_pageload');
		if (sLoadHandlers != null)
			eval(sLoadHandlers);
		
		dnn.dom.attachEvent(window, 'onscroll', __dnn_bodyscroll);
	}
SLIDE_start();
	__dnn_m_bPageLoaded = true;
}

function __dnn_KeyDown(iKeyCode, sFunc, e)
{
	if (e == null)
		e = window.event;

	if (e.keyCode == iKeyCode)
	{
		eval(unescape(sFunc));
		return false;
	}
}

function __dnn_bodyscroll() 
{
	var oF=document.forms[0];	
	if (__dnn_ClientAPIEnabled() && __dnn_m_bPageLoaded)
		oF.ScrollTop.value=document.documentElement.scrollTop ? document.documentElement.scrollTop : dnn.dom.getByTagName("body")[0].scrollTop;
}

function __dnn_setScrollTop(iTop)
{
	if (__dnn_ClientAPIEnabled())
	{
		if (iTop == null)
			iTop = document.forms[0].ScrollTop.value;
	
		var sID = dnn.getVar('ScrollToControl');
		if (sID != null && sID.length > 0)
		{
			var oCtl = dnn.dom.getById(sID);
			if (oCtl != null)
			{
				iTop = dnn.dom.positioning.elementTop(oCtl);
				dnn.setVar('ScrollToControl', '');
			}
		}
		window.scrollTo(0, iTop);
	}
}

//Focus logic
function __dnn_SetInitialFocus(sID)
{
	var oCtl = dnn.dom.getById(sID);	
	if (oCtl != null && __dnn_CanReceiveFocus(oCtl))
		oCtl.focus();
}	

function __dnn_CanReceiveFocus(e)
{
	//probably should call getComputedStyle for classes that cause item to be hidden
	if (e.style.display != 'none' && e.tabIndex > -1 && e.disabled == false && e.style.visible != 'hidden')
	{
		var eParent = e.parentElement;
		while (eParent != null && eParent.tagName != 'BODY')
		{
			if (eParent.style.display == 'none' || eParent.disabled || eParent.style.visible == 'hidden')
				return false;
			eParent = eParent.parentElement;
		}
		return true;
	}
	else
		return false;
}

//Max/Min Script
function __dnn_ContainerMaxMin_OnClick(oLnk, sContentID)
{
	var oContent = dnn.dom.getById(sContentID);
	if (oContent != null)
	{
		var oBtn = oLnk.childNodes[0];
		var sContainerID = oLnk.getAttribute('containerid');
		var sCookieID = oLnk.getAttribute('cookieid');
		var sCurrentFile = oBtn.src.toLowerCase().substr(oBtn.src.lastIndexOf('/'));
		var sMaxFile;
		var sMaxIcon;
		var sMinIcon;

		if (dnn.getVar('min_icon_' + sContainerID))
			sMinIcon = dnn.getVar('min_icon_' + sContainerID);
		else
			sMinIcon = dnn.getVar('min_icon');

		if (dnn.getVar('max_icon_' + sContainerID))
			sMaxIcon = dnn.getVar('max_icon_' + sContainerID);
		else
			sMaxIcon = dnn.getVar('max_icon');

		sMaxFile = sMaxIcon.toLowerCase().substr(sMaxIcon.lastIndexOf('/'));

		var iNum = 5;
		if (oLnk.getAttribute('animf') != null)
			iNum = new Number(oLnk.getAttribute('animf'));
			
		if (sCurrentFile == sMaxFile)
		{
			oBtn.src = sMinIcon;				
			//oContent.style.display = '';
			dnn.dom.expandElement(oContent, iNum);
			oBtn.title = dnn.getVar('min_text');
			if (sCookieID != null)
			{
				if (dnn.getVar('__dnn_' + sContainerID + ':defminimized') == 'true')
					dnn.dom.setCookie(sCookieID, 'true', 365);
				else
					dnn.dom.deleteCookie(sCookieID);
			}
			else
				dnn.setVar('__dnn_' + sContainerID + '_Visible', 'true');
		}
		else
		{
			oBtn.src = sMaxIcon;				
			//oContent.style.display = 'none';
			dnn.dom.collapseElement(oContent, iNum);
			oBtn.title = dnn.getVar('max_text');
			if (sCookieID != null)
			{
				if (dnn.getVar('__dnn_' + sContainerID + ':defminimized') == 'true')
					dnn.dom.deleteCookie(sCookieID);
				else
					dnn.dom.setCookie(sCookieID, 'false', 365);				
			}
			else
				dnn.setVar('__dnn_' + sContainerID + '_Visible', 'false');			
		}
		
		return true;	//cancel postback
	}
	return false;	//failed so do postback
}

function __dnn_Help_OnClick(sHelpID)
{
	var oHelp = dnn.dom.getById(sHelpID);
	if (oHelp != null)
	{
		if (oHelp.style.display == 'none')
			oHelp.style.display = '';
		else
			oHelp.style.display = 'none';

		return true;	//cancel postback
	}
	return false;	//failed so do postback
}

function __dnn_SectionMaxMin(oBtn, sContentID)
{
	var oContent = dnn.dom.getById(sContentID);
	if (oContent != null)
	{
		var sMaxIcon = oBtn.getAttribute('max_icon');
		var sMinIcon = oBtn.getAttribute('min_icon');
		var bCallback = oBtn.getAttribute('userctr') != null;
		var sVal;
		if (oContent.style.display == 'none')
		{
			oBtn.src = sMinIcon;				
			oContent.style.display = '';
			if (bCallback)
			    sVal = 'True';
			else
			    dnn.setVar(oBtn.id + ':exp', 1);
		}
		else
		{
			oBtn.src = sMaxIcon;				
			oContent.style.display = 'none';
			if (bCallback)
			    sVal = 'False';
			else
                dnn.setVar(oBtn.id + ':exp', 0);
		}
		if (bCallback)
		    dnncore.setUserProp(oBtn.getAttribute('userctr'), oBtn.getAttribute('userkey'), sVal, null);
		return true;	//cancel postback
	}
	return false;	//failed so do postback
}

//Drag N Drop
function __dnn_enableDragDrop()
{
	var aryConts = dnn.getVar('__dnn_dragDrop').split(";");	
	var aryTitles;

	for (var i=0; i < aryConts.length; i++)
	{
		aryTitles = aryConts[i].split(" ");
		if (aryTitles[0].length > 0)
		{			
			var oCtr = dnn.dom.getById(aryTitles[0]);
			var oTitle = dnn.dom.getById(aryTitles[1]);
			if (oCtr != null && oTitle != null)
			{
				oCtr.setAttribute('moduleid', aryTitles[2]);
				dnn.dom.positioning.enableDragAndDrop(oCtr, oTitle, '__dnn_dragComplete()', '__dnn_dragOver()');
			}	
		}
	}
}

var __dnn_oPrevSelPane;
var __dnn_oPrevSelModule;
var __dnn_dragEventCount=0;
function __dnn_dragOver()
{
	__dnn_dragEventCount++;
	if (__dnn_dragEventCount % 75 != 0)	//only calculate position every 75 events
		return;
	
	var oCont = dnn.dom.getById(dnn.dom.positioning.dragCtr.contID);

	var oPane = __dnn_getMostSelectedPane(dnn.dom.positioning.dragCtr);
		
	if (__dnn_oPrevSelPane != null)	//reset previous pane's border
		__dnn_oPrevSelPane.pane.style.border = __dnn_oPrevSelPane.origBorder;

	if (oPane != null)
	{		
		__dnn_oPrevSelPane = oPane;
		oPane.pane.style.border = '4px double ' + DNN_HIGHLIGHT_COLOR;
		var iIndex = __dnn_getPaneControlIndex(oCont, oPane);

		var oPrevCtl;
		var oNextCtl;
		for (var i=0; i<oPane.controls.length; i++)
		{
			if (iIndex > i && oPane.controls[i].id != oCont.id)
				oPrevCtl = oPane.controls[i];
			if (iIndex <= i && oPane.controls[i].id != oCont.id)
			{
				oNextCtl = oPane.controls[i];
				break;
			}
		}			
		
		if (__dnn_oPrevSelModule != null)
			dnn.dom.getNonTextNode(__dnn_oPrevSelModule.control).style.border = __dnn_oPrevSelModule.origBorder;
			

		if (oNextCtl != null)
		{
			__dnn_oPrevSelModule = oNextCtl;
			dnn.dom.getNonTextNode(oNextCtl.control).style.borderTop = '5px groove ' + DNN_HIGHLIGHT_COLOR;
		}
		else if (oPrevCtl != null)
		{
			__dnn_oPrevSelModule = oPrevCtl;
			dnn.dom.getNonTextNode(oPrevCtl.control).style.borderBottom = '5px groove ' + DNN_HIGHLIGHT_COLOR;
		}
	}
}

function __dnn_dragComplete()
{
	var oCtl = dnn.dom.getById(dnn.dom.positioning.dragCtr.contID);
	var sModuleID = oCtl.getAttribute('moduleid');
	
	if (__dnn_oPrevSelPane != null)
		__dnn_oPrevSelPane.pane.style.border = __dnn_oPrevSelPane.origBorder;

	if (__dnn_oPrevSelModule != null)
		dnn.dom.getNonTextNode(__dnn_oPrevSelModule.control).style.border = __dnn_oPrevSelModule.origBorder;
		
	var oPane = __dnn_getMostSelectedPane(dnn.dom.positioning.dragCtr);
	var iIndex;
	if (oPane == null)
	{
		var oPanes = __dnn_Panes();
		for (var i=0; i<oPanes.length; i++)
		{
			if (oPanes[i].id == oCtl.parentNode.id)
				oPane = oPanes[i];
		}
	}	
	if (oPane != null)
	{
		iIndex = __dnn_getPaneControlIndex(oCtl, oPane);
		__dnn_MoveToPane(oPane, oCtl, iIndex);

		dnn.callPostBack('MoveToPane', 'moduleid=' + sModuleID, 'pane=' + oPane.paneName, 'order=' + iIndex * 2); 
	}
}

function __dnn_MoveToPane(oPane, oCtl, iIndex)
{

	if (oPane != null)
	{
		var aryCtls = new Array();
		for (var i=iIndex; i<oPane.controls.length; i++)
		{
			if (oPane.controls[i].control.id != oCtl.id)
				aryCtls[aryCtls.length] = oPane.controls[i].control;

			dnn.dom.removeChild(oPane.controls[i].control);
		}
		dnn.dom.appendChild(oPane.pane, oCtl);
		oCtl.style.top=0;
		oCtl.style.left=0;
		oCtl.style.position = 'relative';
		for (var i=0; i<aryCtls.length; i++)
		{
			dnn.dom.appendChild(oPane.pane, aryCtls[i]);
		}
		__dnn_RefreshPanes();
	}
	else
	{
		oCtl.style.top=0;
		oCtl.style.left=0;
		oCtl.style.position = 'relative';
	}
}

function __dnn_RefreshPanes()
{
	var aryPanes = dnn.getVar('__dnn_Panes').split(';');
	var aryPaneNames = dnn.getVar('__dnn_PaneNames').split(';');
	__dnn_m_aryPanes = new Array();
	for (var i=0; i<aryPanes.length; i++)
	{
		if (aryPanes[i].length > 0)
			__dnn_m_aryPanes[__dnn_m_aryPanes.length] = new __dnn_Pane(dnn.dom.getById(aryPanes[i]), aryPaneNames[i]);
	}
}

var __dnn_m_aryPanes;
var __dnn_m_aryModules;
function __dnn_Panes()
{
	if (__dnn_m_aryPanes == null)
	{
		__dnn_m_aryPanes = new Array();
		__dnn_RefreshPanes();
	}
	return __dnn_m_aryPanes;
}

function __dnn_Modules(sModuleID)
{
	if (__dnn_m_aryModules == null)
		__dnn_RefreshPanes();
	
	return __dnn_m_aryModules[sModuleID];
}

function __dnn_getMostSelectedPane(oContent)
{
	var oCDims = new dnn.dom.positioning.dims(oContent);
	var iTopScore=0;
	var iScore;
	var oTopPane;
	for (var i=0; i<__dnn_Panes().length; i++)
	{
		var oPane = __dnn_Panes()[i];
		var oPDims = new dnn.dom.positioning.dims(oPane.pane);
		iScore = dnn.dom.positioning.elementOverlapScore(oPDims, oCDims);
		
		if (iScore > iTopScore)
		{
			iTopScore = iScore;
			oTopPane = oPane;
		}
	}
	return oTopPane;
}

function __dnn_getPaneControlIndex(oContent, oPane)
{
	if (oPane == null)
		return;
	var oCDims = new dnn.dom.positioning.dims(oContent);
	var oCtl;
	if (oPane.controls.length == 0)
		return 0;
	for (var i=0; i<oPane.controls.length; i++)
	{
		oCtl = oPane.controls[i];
		var oIDims = new dnn.dom.positioning.dims(oCtl.control);
		if (oCDims.t < oIDims.t)
			return oCtl.index;
	}
	if (oCtl != null)
		return oCtl.index+1;
	else
		return 0;
}

//Objects
function __dnn_Pane(ctl, sPaneName)
{
	this.pane = ctl;
	this.id = ctl.id;
	this.controls = new Array();
	this.origBorder = ctl.style.border;
	this.paneName = sPaneName;
	
	var iIndex = 0;
	var strModuleOrder='';
	for (var i=0; i<ctl.childNodes.length; i++)
	{
		var oNode = ctl.childNodes[i];
		if (dnn.dom.isNonTextNode(oNode))	
		{
			if (__dnn_m_aryModules == null)
				__dnn_m_aryModules = new Array();

			//if (oNode.tagName == 'A' && oNode.childNodes.length > 0)
			//	oNode = oNode.childNodes[0];	//DNN now embeds anchor tag 
				
			var sModuleID = oNode.getAttribute('moduleid');
			if (sModuleID != null && sModuleID.length > 0)
			{
				strModuleOrder += sModuleID + '~';
				this.controls[this.controls.length] = new __dnn_PaneControl(oNode, iIndex);
				__dnn_m_aryModules[sModuleID] = oNode.id;
				iIndex+=1;
			}
		}
	}
	this.moduleOrder = strModuleOrder;

}

function __dnn_PaneControl(ctl, iIndex)
{
	this.control = ctl;
	this.id = ctl.id;
	this.index = iIndex;
	this.origBorder = ctl.style.border;
	
}

//move towards dnncore ns.  right now only for personalization
function __dnncore()
{
    this.GetUserVal = 0;
    this.SetUserVal = 1;
}

__dnncore.prototype = {
getUserProp: function(sNameCtr, sKey, pFunc) {
    this._doUserCallBack(dnncore.GetUserVal, sNameCtr, sKey, null, new dnncore.UserPropArgs(sNameCtr, sKey, pFunc));
},

setUserProp: function(sNameCtr, sKey, sVal, pFunc) {
    this._doUserCallBack(dnncore.SetUserVal, sNameCtr, sKey, sVal, new dnncore.UserPropArgs(sNameCtr, sKey, pFunc));
},

_doUserCallBack: function(iType, sNameCtr, sKey, sVal, pFunc) {
    if (dnn && dnn.xmlhttp)
    {
        var sPack = iType + COL_DELIMITER + sNameCtr + COL_DELIMITER + sKey + COL_DELIMITER + sVal;
        dnn.xmlhttp.doCallBack('__Page',sPack,dnncore._callBackSuccess,pFunc,dnncore._callBackFail,null,true,null,0);
    }
    else
        alert('Client Personalization not enabled');
},

_callBackSuccess: function (result, ctx, req) {
    if (ctx.pFunc)
        ctx.pFunc(ctx.namingCtr, ctx.key, result);
},

_callBackFail: function (result, ctx) {
	window.status = result;
}
}

__dnncore.prototype.UserPropArgs = function(sNameCtr, sKey, pFunc)
{
    this.namingCtr = sNameCtr;
	this.key = sKey;
	this.pFunc = pFunc;
}

var dnncore = new __dnncore();




/** * mm_menu 20MAR2002 Version 6.0 * Andy Finnell, March 2002 * Copyright (c) 2000-2002 Macromedia, Inc. * * based on menu.js * by gary smith, July 1997 * Copyright (c) 1997-1999 Netscape Communications Corp. * * Netscape grants you a royalty free license to use or modify this * software provided that this copyright notice appears on all copies. * This software is provided "AS IS," without a warranty of any kind. */function Menu(label, mw, mh, fnt, fs, fclr, fhclr, bg, bgh, halgn, valgn, pad, space, to, sx, sy, srel, opq, vert, idt, aw, ah) {	this.version = "020320 [Menu; mm_menu.js]";	this.type = "Menu";	this.menuWidth = mw;	this.menuItemHeight = mh;	this.fontSize = fs;	this.fontWeight = "plain";	this.fontFamily = fnt;	this.fontColor = fclr;	this.fontColorHilite = fhclr;	this.bgColor = "#555555";	this.menuBorder = 1;	this.menuBgOpaque=opq;	this.menuItemBorder = 1;	this.menuItemIndent = idt;	this.menuItemBgColor = bg;	this.menuItemVAlign = valgn;	this.menuItemHAlign = halgn;	this.menuItemPadding = pad;	this.menuItemSpacing = space;	this.menuLiteBgColor = "#ffffff";	this.menuBorderBgColor = "#777777";	this.menuHiliteBgColor = bgh;	this.menuContainerBgColor = "#cccccc";	this.childMenuIcon = "/images/arrows.gif";	this.submenuXOffset = sx;	this.submenuYOffset = sy;	this.submenuRelativeToItem = srel;	this.vertical = vert;	this.items = new Array();	this.actions = new Array();	this.childMenus = new Array();	this.hideOnMouseOut = true;	this.hideTimeout = to;	this.addMenuItem = addMenuItem;	this.writeMenus = writeMenus;	this.MM_showMenu = MM_showMenu;	this.onMenuItemOver = onMenuItemOver;	this.onMenuItemAction = onMenuItemAction;	this.hideMenu = hideMenu;	this.hideChildMenu = hideChildMenu;	if (!window.menus) window.menus = new Array();	this.label = " " + label;	window.menus[this.label] = this;	window.menus[window.menus.length] = this;	if (!window.activeMenus) window.activeMenus = new Array();}function addMenuItem(label, action) {	this.items[this.items.length] = label;	this.actions[this.actions.length] = action;}function FIND(item) {	if( window.mmIsOpera ) return(document.getElementById(item));	if (document.all) return(document.all[item]);	if (document.getElementById) return(document.getElementById(item));	return(false);}function writeMenus(container) {	if (window.triedToWriteMenus) return;	var agt = navigator.userAgent.toLowerCase();	window.mmIsOpera = agt.indexOf("opera") != -1;	if (!container && document.layers) {		window.delayWriteMenus = this.writeMenus;		var timer = setTimeout('delayWriteMenus()', 500);		container = new Layer(100);		clearTimeout(timer);	} else if (document.all || document.hasChildNodes || window.mmIsOpera) {		document.writeln('<span id="menuContainer"></span>');		container = FIND("menuContainer");	}	window.mmHideMenuTimer = null;	if (!container) return;		window.triedToWriteMenus = true; 	container.isContainer = true;	container.menus = new Array();	for (var i=0; i<window.menus.length; i++) 		container.menus[i] = window.menus[i];	window.menus.length = 0;	var countMenus = 0;	var countItems = 0;	var top = 0;	var content = '';	var lrs = false;	var theStat = "";	var tsc = 0;	if (document.layers) lrs = true;	for (var i=0; i<container.menus.length; i++, countMenus++) {		var menu = container.menus[i];		if (menu.bgImageUp || !menu.menuBgOpaque) {			menu.menuBorder = 0;			menu.menuItemBorder = 0;		}		if (lrs) {			var menuLayer = new Layer(100, container);			var lite = new Layer(100, menuLayer);			lite.top = menu.menuBorder;			lite.left = menu.menuBorder;			var body = new Layer(100, lite);			body.top = menu.menuBorder;			body.left = menu.menuBorder;		} else {			content += ''+			'<div id="menuLayer'+ countMenus +'" style="position:absolute;z-index:1;left:10px;top:'+ (i * 100) +'px;visibility:hidden;color:' +  menu.menuBorderBgColor + ';">\n'+			'  <div id="menuLite'+ countMenus +'" style="position:absolute;z-index:1;left:'+ menu.menuBorder +'px;top:'+ menu.menuBorder +'px;visibility:hide;" onmouseout="mouseoutMenu();">\n'+			'	 <div id="menuFg'+ countMenus +'" style="position:absolute;left:'+ menu.menuBorder +'px;top:'+ menu.menuBorder +'px;visibility:hide;">\n'+			'';		}		var x=i;		for (var i=0; i<menu.items.length; i++) {			var item = menu.items[i];			var childMenu = false;			var defaultHeight = menu.fontSize+2*menu.menuItemPadding;			if (item.label) {				item = item.label;				childMenu = true;			}			menu.menuItemHeight = menu.menuItemHeight || defaultHeight;			var itemProps = '';			if( menu.fontFamily != '' ) itemProps += 'font-family:' + menu.fontFamily +';';			itemProps += 'font-weight:' + menu.fontWeight + ';fontSize:' + menu.fontSize + 'px;';			if (menu.fontStyle) itemProps += 'font-style:' + menu.fontStyle + ';';			if (document.all || window.mmIsOpera) 				itemProps += 'font-size:' + menu.fontSize + 'px;" onmouseover="onMenuItemOver(null,this);" onclick="onMenuItemAction(null,this);';			else if (!document.layers) {				itemProps += 'font-size:' + menu.fontSize + 'px;';			}			var l;			if (lrs) {				var lw = menu.menuWidth;				if( menu.menuItemHAlign == 'right' ) lw -= menu.menuItemPadding;				l = new Layer(lw,body);			}			var itemLeft = 0;			var itemTop = i*menu.menuItemHeight;			if( !menu.vertical ) {				itemLeft = i*menu.menuWidth;				itemTop = 0;			}			var dTag = '<div id="menuItem'+ countItems +'" style="position:absolute;left:' + itemLeft + 'px;top:'+ itemTop +'px;'+ itemProps +'">';			var dClose = '</div>'			if (menu.bgImageUp) dTag = '<div id="menuItem'+ countItems +'" style="background:url('+menu.bgImageUp+');position:absolute;left:' + itemLeft + 'px;top:'+ itemTop +'px;'+ itemProps +'">';			var left = 0, top = 0, right = 0, bottom = 0;			left = 1 + menu.menuItemPadding + menu.menuItemIndent;			right = left + menu.menuWidth - 2*menu.menuItemPadding - menu.menuItemIndent;			if( menu.menuItemVAlign == 'top' ) top = menu.menuItemPadding;			if( menu.menuItemVAlign == 'bottom' ) top = menu.menuItemHeight-menu.fontSize-1-menu.menuItemPadding;			if( menu.menuItemVAlign == 'middle' ) top = ((menu.menuItemHeight/2)-(menu.fontSize/2)-1);			bottom = menu.menuItemHeight - 2*menu.menuItemPadding;			var textProps = 'position:absolute;left:' + left + 'px;top:' + top + 'px;';			if (lrs) {				textProps +=itemProps + 'right:' + right + ';bottom:' + bottom + ';';				dTag = "";				dClose = "";			}						if(document.all && !window.mmIsOpera) {				item = '<div align="' + menu.menuItemHAlign + '">' + item + '</div>';			} else if (lrs) {				item = '<div style="text-align:' + menu.menuItemHAlign + ';">' + item + '</div>';			} else {				var hitem = null;				if( menu.menuItemHAlign != 'left' ) {					if(window.mmIsOpera) {						var operaWidth = menu.menuItemHAlign == 'center' ? -(menu.menuWidth-2*menu.menuItemPadding) : (menu.menuWidth-6*menu.menuItemPadding);						hitem = '<div id="menuItemHilite' + countItems + 'Shim" style="position:absolute;top:1px;left:' + menu.menuItemPadding + 'px;width:' + operaWidth + 'px;text-align:' 							+ menu.menuItemHAlign + ';visibility:visible;">' + item + '</div>';						item = '<div id="menuItemText' + countItems + 'Shim" style="position:absolute;top:1px;left:' + menu.menuItemPadding + 'px;width:' + operaWidth + 'px;text-align:' 							+ menu.menuItemHAlign + ';visibility:visible;">' + item + '</div>';					} else {						hitem = '<div id="menuItemHilite' + countItems + 'Shim" style="position:absolute;top:1px;left:1px;right:-' + (left+menu.menuWidth-3*menu.menuItemPadding) + 'px;text-align:' 							+ menu.menuItemHAlign + ';visibility:visible;">' + item + '</div>';						item = '<div id="menuItemText' + countItems + 'Shim" style="position:absolute;top:1px;left:1px;right:-' + (left+menu.menuWidth-3*menu.menuItemPadding) + 'px;text-align:' 							+ menu.menuItemHAlign + ';visibility:visible;">' + item + '</div>';					}				} else hitem = null;			}			if(document.all && !window.mmIsOpera) item = '<div id="menuItemShim' + countItems + '" style="position:absolute;left:0px;top:0px;">' + item + '</div>';			var dText	= '<div id="menuItemText'+ countItems +'" style="' + textProps + 'color:'+ menu.fontColor +';">'+ item +'&nbsp</div>\n'						+ '<div id="menuItemHilite'+ countItems +'" style="' + textProps + 'color:'+ menu.fontColorHilite +';visibility:hidden;">' 						+ (hitem||item) +'&nbsp</div>';			if (childMenu) content += ( dTag + dText + '<div id="childMenu'+ countItems +'" style="position:absolute;left:0px;top:3px;"><img src="'+ menu.childMenuIcon +'"></div>\n' + dClose);			else content += ( dTag + dText + dClose);			if (lrs) {				l.document.open("text/html");				l.document.writeln(content);				l.document.close();					content = '';				theStat += "-";				tsc++;				if (tsc > 50) {					tsc = 0;					theStat = "";				}				status = theStat;			}			countItems++;  		}		if (lrs) {			var focusItem = new Layer(100, body);			focusItem.visiblity="hidden";			focusItem.document.open("text/html");			focusItem.document.writeln("&nbsp;");			focusItem.document.close();			} else {		  content += '	  <div id="focusItem'+ countMenus +'" style="position:absolute;left:0px;top:0px;visibility:hide;" onclick="onMenuItemAction(null,this);">&nbsp;</div>\n';		  content += '   </div>\n  </div>\n</div>\n';		}		i=x;	}	if (document.layers) {				container.clip.width = window.innerWidth;		container.clip.height = window.innerHeight;		container.onmouseout = mouseoutMenu;		container.menuContainerBgColor = this.menuContainerBgColor;		for (var i=0; i<container.document.layers.length; i++) {			proto = container.menus[i];			var menu = container.document.layers[i];			container.menus[i].menuLayer = menu;			container.menus[i].menuLayer.Menu = container.menus[i];			container.menus[i].menuLayer.Menu.container = container;			var body = menu.document.layers[0].document.layers[0];			body.clip.width = proto.menuWidth || body.clip.width;			body.clip.height = proto.menuHeight || body.clip.height;			for (var n=0; n<body.document.layers.length-1; n++) {				var l = body.document.layers[n];				l.Menu = container.menus[i];				l.menuHiliteBgColor = proto.menuHiliteBgColor;				l.document.bgColor = proto.menuItemBgColor;				l.saveColor = proto.menuItemBgColor;				l.onmouseover = proto.onMenuItemOver;				l.onclick = proto.onMenuItemAction;				l.mmaction = container.menus[i].actions[n];				l.focusItem = body.document.layers[body.document.layers.length-1];				l.clip.width = proto.menuWidth || body.clip.width;				l.clip.height = proto.menuItemHeight || l.clip.height;				if (n>0) {					if( l.Menu.vertical ) l.top = body.document.layers[n-1].top + body.document.layers[n-1].clip.height + proto.menuItemBorder + proto.menuItemSpacing;					else l.left = body.document.layers[n-1].left + body.document.layers[n-1].clip.width + proto.menuItemBorder + proto.menuItemSpacing;				}				l.hilite = l.document.layers[1];				if (proto.bgImageUp) l.background.src = proto.bgImageUp;				l.document.layers[1].isHilite = true;				if (l.document.layers.length > 2) {					l.childMenu = container.menus[i].items[n].menuLayer;					l.document.layers[2].left = l.clip.width -13;					l.document.layers[2].top = (l.clip.height / 2) -4;					l.document.layers[2].clip.left += 3;					l.Menu.childMenus[l.Menu.childMenus.length] = l.childMenu;				}			}			if( proto.menuBgOpaque ) body.document.bgColor = proto.bgColor;			if( proto.vertical ) {				body.clip.width  = l.clip.width +proto.menuBorder;				body.clip.height = l.top + l.clip.height +proto.menuBorder;			} else {				body.clip.height  = l.clip.height +proto.menuBorder;				body.clip.width = l.left + l.clip.width  +proto.menuBorder;				if( body.clip.width > window.innerWidth ) body.clip.width = window.innerWidth;			}			var focusItem = body.document.layers[n];			focusItem.clip.width = body.clip.width;			focusItem.Menu = l.Menu;			focusItem.top = -30;            focusItem.captureEvents(Event.MOUSEDOWN);            focusItem.onmousedown = onMenuItemDown;			if( proto.menuBgOpaque ) menu.document.bgColor = proto.menuBorderBgColor;			var lite = menu.document.layers[0];			if( proto.menuBgOpaque ) lite.document.bgColor = proto.menuLiteBgColor;			lite.clip.width = body.clip.width +1;			lite.clip.height = body.clip.height +1;			menu.clip.width = body.clip.width + (proto.menuBorder * 3) ;			menu.clip.height = body.clip.height + (proto.menuBorder * 3);		}	} else {		if ((!document.all) && (container.hasChildNodes) && !window.mmIsOpera) {			container.innerHTML=content;		} else {			container.document.open("text/html");			container.document.writeln(content);			container.document.close();			}		if (!FIND("menuLayer0")) return;		var menuCount = 0;		for (var x=0; x<container.menus.length; x++) {			var menuLayer = FIND("menuLayer" + x);			container.menus[x].menuLayer = "menuLayer" + x;			menuLayer.Menu = container.menus[x];			menuLayer.Menu.container = "menuLayer" + x;			menuLayer.style.zindex = 1;		    var s = menuLayer.style;			s.pixeltop = -300;			s.pixelleft = -300;			s.top = '-300px';			s.left = '-300px';			var menu = container.menus[x];			menu.menuItemWidth = menu.menuWidth || menu.menuIEWidth || 140;			if( menu.menuBgOpaque ) menuLayer.style.backgroundColor = menu.menuBorderBgColor;			var top = 0;			var left = 0;			menu.menuItemLayers = new Array();			for (var i=0; i<container.menus[x].items.length; i++) {				var l = FIND("menuItem" + menuCount);				l.Menu = container.menus[x];				l.Menu.menuItemLayers[l.Menu.menuItemLayers.length] = l;				if (l.addEventListener || window.mmIsOpera) {					l.style.width = menu.menuItemWidth + 'px';					l.style.height = menu.menuItemHeight + 'px';					l.style.pixelWidth = menu.menuItemWidth;					l.style.pixelHeight = menu.menuItemHeight;					l.style.top = top + 'px';					l.style.left = left + 'px';					if(l.addEventListener) {						l.addEventListener("mouseover", onMenuItemOver, false);						l.addEventListener("click", onMenuItemAction, false);						l.addEventListener("mouseout", mouseoutMenu, false);					}					if( menu.menuItemHAlign != 'left' ) {						l.hiliteShim = FIND("menuItemHilite" + menuCount + "Shim");						l.hiliteShim.style.visibility = "inherit";						l.textShim = FIND("menuItemText" + menuCount + "Shim");						l.hiliteShim.style.pixelWidth = menu.menuItemWidth - 2*menu.menuItemPadding - menu.menuItemIndent;						l.hiliteShim.style.width = l.hiliteShim.style.pixelWidth;						l.textShim.style.pixelWidth = menu.menuItemWidth - 2*menu.menuItemPadding - menu.menuItemIndent;						l.textShim.style.width = l.textShim.style.pixelWidth;						}				} else {					l.style.pixelWidth = menu.menuItemWidth;					l.style.pixelHeight = menu.menuItemHeight;					l.style.pixelTop = top;					l.style.pixelLeft = left;					if( menu.menuItemHAlign != 'left' ) {						var shim = FIND("menuItemShim" + menuCount);						shim[0].style.pixelWidth = menu.menuItemWidth - 2*menu.menuItemPadding - menu.menuItemIndent;						shim[1].style.pixelWidth = menu.menuItemWidth - 2*menu.menuItemPadding - menu.menuItemIndent;						shim[0].style.width = shim[0].style.pixelWidth + 'px';						shim[1].style.width = shim[1].style.pixelWidth + 'px';					}				}				if( menu.vertical ) top = top + menu.menuItemHeight+menu.menuItemBorder+menu.menuItemSpacing;				else left = left + menu.menuItemWidth+menu.menuItemBorder+menu.menuItemSpacing;				l.style.fontSize = menu.fontSize + 'px';				l.style.backgroundColor = menu.menuItemBgColor;				l.style.visibility = "inherit";				l.saveColor = menu.menuItemBgColor;				l.menuHiliteBgColor = menu.menuHiliteBgColor;				l.mmaction = container.menus[x].actions[i];				l.hilite = FIND("menuItemHilite" + menuCount);				l.focusItem = FIND("focusItem" + x);				l.focusItem.style.pixelTop = -30;				l.focusItem.style.top = '-30px';				var childItem = FIND("childMenu" + menuCount);				if (childItem) {					l.childMenu = container.menus[x].items[i].menuLayer;					childItem.style.pixelLeft = menu.menuItemWidth -11;					childItem.style.left = childItem.style.pixelLeft + 'px';					childItem.style.pixelTop = (menu.menuItemHeight /2) -4;					childItem.style.top = childItem.style.pixelTop + 'px';					l.Menu.childMenus[l.Menu.childMenus.length] = l.childMenu;				}				l.style.cursor = "hand";				menuCount++;			}			if( menu.vertical ) {				menu.menuHeight = top-1-menu.menuItemSpacing;				menu.menuWidth = menu.menuItemWidth;			} else {				menu.menuHeight = menu.menuItemHeight;				menu.menuWidth = left-1-menu.menuItemSpacing;			}			var lite = FIND("menuLite" + x);			var s = lite.style;			s.pixelHeight = menu.menuHeight +(menu.menuBorder * 2);			s.height = s.pixelHeight + 'px';			s.pixelWidth = menu.menuWidth + (menu.menuBorder * 2);			s.width = s.pixelWidth + 'px';			if( menu.menuBgOpaque ) s.backgroundColor = menu.menuLiteBgColor;			var body = FIND("menuFg" + x);			s = body.style;			s.pixelHeight = menu.menuHeight + menu.menuBorder;			s.height = s.pixelHeight + 'px';			s.pixelWidth = menu.menuWidth + menu.menuBorder;			s.width = s.pixelWidth + 'px';			if( menu.menuBgOpaque ) s.backgroundColor = menu.bgColor;			s = menuLayer.style;			s.pixelWidth  = menu.menuWidth + (menu.menuBorder * 4);			s.width = s.pixelWidth + 'px';			s.pixelHeight  = menu.menuHeight+(menu.menuBorder*4);			s.height = s.pixelHeight + 'px';		}	}	if (document.captureEvents) document.captureEvents(Event.MOUSEUP);	if (document.addEventListener) document.addEventListener("mouseup", onMenuItemOver, false);	if (document.layers && window.innerWidth) {		window.onresize = NS4resize;		window.NS4sIW = window.innerWidth;		window.NS4sIH = window.innerHeight;		setTimeout("NS4resize()",500);	}	document.onmouseup = mouseupMenu;	window.mmWroteMenu = true;	status = "";}function NS4resize() {	if (NS4sIW != window.innerWidth || NS4sIH != window.innerHeight) window.location.reload();}function onMenuItemOver(e, l) {	MM_clearTimeout();	l = l || this;	a = window.ActiveMenuItem;	if (document.layers) {		if (a) {			a.document.bgColor = a.saveColor;			if (a.hilite) a.hilite.visibility = "hidden";			if (a.Menu.bgImageOver) a.background.src = a.Menu.bgImageUp;			a.focusItem.top = -100;			a.clicked = false;		}		if (l.hilite) {			l.document.bgColor = l.menuHiliteBgColor;			l.zIndex = 1;			l.hilite.visibility = "inherit";			l.hilite.zIndex = 2;			l.document.layers[1].zIndex = 1;			l.focusItem.zIndex = this.zIndex +2;		}		if (l.Menu.bgImageOver) l.background.src = l.Menu.bgImageOver;		l.focusItem.top = this.top;		l.focusItem.left = this.left;		l.focusItem.clip.width = l.clip.width;		l.focusItem.clip.height = l.clip.height;		l.Menu.hideChildMenu(l);	} else if (l.style && l.Menu) {		if (a) {			a.style.backgroundColor = a.saveColor;			if (a.hilite) a.hilite.style.visibility = "hidden";			if (a.hiliteShim) a.hiliteShim.style.visibility = "inherit";			if (a.Menu.bgImageUp) a.style.background = "url(" + a.Menu.bgImageUp +")";;		} 		l.style.backgroundColor = l.menuHiliteBgColor;		l.zIndex = 1;		if (l.Menu.bgImageOver) l.style.background = "url(" + l.Menu.bgImageOver +")";		if (l.hilite) {			l.hilite.style.visibility = "inherit";			if( l.hiliteShim ) l.hiliteShim.style.visibility = "visible";		}		l.focusItem.style.pixelTop = l.style.pixelTop;		l.focusItem.style.top = l.focusItem.style.pixelTop + 'px';		l.focusItem.style.pixelLeft = l.style.pixelLeft;		l.focusItem.style.left = l.focusItem.style.pixelLeft + 'px';		l.focusItem.style.zIndex = l.zIndex +1;		l.Menu.hideChildMenu(l);	} else return;	window.ActiveMenuItem = l;}function onMenuItemAction(e, l) {	l = window.ActiveMenuItem;	if (!l) return;	hideActiveMenus();	if (l.mmaction) eval("" + l.mmaction);	window.ActiveMenuItem = 0;}function MM_clearTimeout() {	if (mmHideMenuTimer) clearTimeout(mmHideMenuTimer);	mmHideMenuTimer = null;	mmDHFlag = false;}function MM_startTimeout() {	if( window.ActiveMenu ) {		mmStart = new Date();		mmDHFlag = true;		mmHideMenuTimer = setTimeout("mmDoHide()", window.ActiveMenu.Menu.hideTimeout);	}}function mmDoHide() {	if (!mmDHFlag || !window.ActiveMenu) return;	var elapsed = new Date() - mmStart;	var timeout = window.ActiveMenu.Menu.hideTimeout;	if (elapsed < timeout) {		mmHideMenuTimer = setTimeout("mmDoHide()", timeout+100-elapsed);		return;	}	mmDHFlag = false;	hideActiveMenus();	window.ActiveMenuItem = 0;}function MM_showMenu(menu, x, y, child, imgname) {	if (!window.mmWroteMenu) return;	MM_clearTimeout();	if (menu) {		var obj = FIND(imgname) || document.images[imgname] || document.links[imgname] || document.anchors[imgname];		x = moveXbySlicePos (x, obj);		y = moveYbySlicePos (y, obj);	}	if (document.layers) {		if (menu) {			var l = menu.menuLayer || menu;			l.top = l.left = 1;			hideActiveMenus();			if (this.visibility) l = this;			window.ActiveMenu = l;		} else {			var l = child;		}		if (!l) return;		for (var i=0; i<l.layers.length; i++) { 			   			if (!l.layers[i].isHilite) l.layers[i].visibility = "inherit";			if (l.layers[i].document.layers.length > 0) MM_showMenu(null, "relative", "relative", l.layers[i]);		}		if (l.parentLayer) {			if (x != "relative") l.parentLayer.left = x || window.pageX || 0;			if (l.parentLayer.left + l.clip.width > window.innerWidth) l.parentLayer.left -= (l.parentLayer.left + l.clip.width - window.innerWidth);			if (y != "relative") l.parentLayer.top = y || window.pageY || 0;			if (l.parentLayer.isContainer) {				l.Menu.xOffset = window.pageXOffset;				l.Menu.yOffset = window.pageYOffset;				l.parentLayer.clip.width = window.ActiveMenu.clip.width +2;				l.parentLayer.clip.height = window.ActiveMenu.clip.height +2;				if (l.parentLayer.menuContainerBgColor && l.Menu.menuBgOpaque ) l.parentLayer.document.bgColor = l.parentLayer.menuContainerBgColor;			}		}		l.visibility = "inherit";		if (l.Menu) l.Menu.container.visibility = "inherit";	} else if (FIND("menuItem0")) {		var l = menu.menuLayer || menu;			hideActiveMenus();		if (typeof(l) == "string") l = FIND(l);		window.ActiveMenu = l;		var s = l.style;		s.visibility = "inherit";		if (x != "relative") {			s.pixelLeft = x || (window.pageX + document.body.scrollLeft) || 0;			s.left = s.pixelLeft + 'px';		}		if (y != "relative") {			s.pixelTop = y || (window.pageY + document.body.scrollTop) || 0;			s.top = s.pixelTop + 'px';		}		l.Menu.xOffset = document.body.scrollLeft;		l.Menu.yOffset = document.body.scrollTop;	}	if (menu) window.activeMenus[window.activeMenus.length] = l;	MM_clearTimeout();}function onMenuItemDown(e, l) {	var a = window.ActiveMenuItem;	if (document.layers && a) {		a.eX = e.pageX;		a.eY = e.pageY;		a.clicked = true;    }}function mouseupMenu(e) {	hideMenu(true, e);	hideActiveMenus();	return true;}function getExplorerVersion() {	var ieVers = parseFloat(navigator.appVersion);	if( navigator.appName != 'Microsoft Internet Explorer' ) return ieVers;	var tempVers = navigator.appVersion;	var i = tempVers.indexOf( 'MSIE ' );	if( i >= 0 ) {		tempVers = tempVers.substring( i+5 );		ieVers = parseFloat( tempVers ); 	}	return ieVers;}function mouseoutMenu() {	if ((navigator.appName == "Microsoft Internet Explorer") && (getExplorerVersion() < 4.5))		return true;	hideMenu(false, false);	return true;}function hideMenu(mouseup, e) {	var a = window.ActiveMenuItem;	if (a && document.layers) {		a.document.bgColor = a.saveColor;		a.focusItem.top = -30;		if (a.hilite) a.hilite.visibility = "hidden";		if (mouseup && a.mmaction && a.clicked && window.ActiveMenu) { 			if (a.eX <= e.pageX+15 && a.eX >= e.pageX-15 && a.eY <= e.pageY+10 && a.eY >= e.pageY-10) {				setTimeout('window.ActiveMenu.Menu.onMenuItemAction();', 500);			}		}		a.clicked = false;		if (a.Menu.bgImageOver) a.background.src = a.Menu.bgImageUp;	} else if (window.ActiveMenu && FIND("menuItem0")) {		if (a) {			a.style.backgroundColor = a.saveColor;			if (a.hilite) a.hilite.style.visibility = "hidden";			if (a.hiliteShim) a.hiliteShim.style.visibility = "inherit";			if (a.Menu.bgImageUp) a.style.background = "url(" + a.Menu.bgImageUp +")";		}	}	if (!mouseup && window.ActiveMenu) {		if (window.ActiveMenu.Menu) {			if (window.ActiveMenu.Menu.hideOnMouseOut) MM_startTimeout();			return(true);		}	}	return(true);}function hideChildMenu(hcmLayer) {	MM_clearTimeout();	var l = hcmLayer;	for (var i=0; i < l.Menu.childMenus.length; i++) {		var theLayer = l.Menu.childMenus[i];		if (document.layers) theLayer.visibility = "hidden";		else {			theLayer = FIND(theLayer);			theLayer.style.visibility = "hidden";			if( theLayer.Menu.menuItemHAlign != 'left' ) {				for(var j = 0; j < theLayer.Menu.menuItemLayers.length; j++) {					var itemLayer = theLayer.Menu.menuItemLayers[j];					if(itemLayer.textShim) itemLayer.textShim.style.visibility = "inherit";				}			}		}		theLayer.Menu.hideChildMenu(theLayer);	}	if (l.childMenu) {		var childMenu = l.childMenu;		if (document.layers) {			l.Menu.MM_showMenu(null,null,null,childMenu.layers[0]);			childMenu.zIndex = l.parentLayer.zIndex +1;			childMenu.top = l.Menu.menuLayer.top + l.Menu.submenuYOffset;			if( l.Menu.vertical ) {				if( l.Menu.submenuRelativeToItem ) childMenu.top += l.top + l.parentLayer.top;				childMenu.left = l.parentLayer.left + l.parentLayer.clip.width - (2*l.Menu.menuBorder) + l.Menu.menuLayer.left + l.Menu.submenuXOffset;			} else {				childMenu.top += l.top + l.parentLayer.top;					if( l.Menu.submenuRelativeToItem ) childMenu.left = l.Menu.menuLayer.left + l.left + l.clip.width + (2*l.Menu.menuBorder) + l.Menu.submenuXOffset;				else childMenu.left = l.parentLayer.left + l.parentLayer.clip.width - (2*l.Menu.menuBorder) + l.Menu.menuLayer.left + l.Menu.submenuXOffset;			}			if( childMenu.left < l.Menu.container.clip.left ) l.Menu.container.clip.left = childMenu.left;			var w = childMenu.clip.width+childMenu.left-l.Menu.container.clip.left;			if (w > l.Menu.container.clip.width)  l.Menu.container.clip.width = w;			var h = childMenu.clip.height+childMenu.top-l.Menu.container.clip.top;			if (h > l.Menu.container.clip.height) l.Menu.container.clip.height = h;			l.document.layers[1].zIndex = 0;			childMenu.visibility = "inherit";		} else if (FIND("menuItem0")) {			childMenu = FIND(l.childMenu);			var menuLayer = FIND(l.Menu.menuLayer);			var s = childMenu.style;			s.zIndex = menuLayer.style.zIndex+1;			if (document.all || window.mmIsOpera) {				s.pixelTop = menuLayer.style.pixelTop + l.Menu.submenuYOffset;				if( l.Menu.vertical ) {					if( l.Menu.submenuRelativeToItem ) s.pixelTop += l.style.pixelTop;					s.pixelLeft = l.style.pixelWidth + menuLayer.style.pixelLeft + l.Menu.submenuXOffset;					s.left = s.pixelLeft + 'px';				} else {					s.pixelTop += l.style.pixelTop;					if( l.Menu.submenuRelativeToItem ) s.pixelLeft = menuLayer.style.pixelLeft + l.style.pixelLeft + l.style.pixelWidth + (2*l.Menu.menuBorder) + l.Menu.submenuXOffset;					else s.pixelLeft = (menuLayer.style.pixelWidth-4*l.Menu.menuBorder) + menuLayer.style.pixelLeft + l.Menu.submenuXOffset;					s.left = s.pixelLeft + 'px';				}			} else {				var top = parseInt(menuLayer.style.top) + l.Menu.submenuYOffset;				var left = 0;				if( l.Menu.vertical ) {					if( l.Menu.submenuRelativeToItem ) top += parseInt(l.style.top);					left = (parseInt(menuLayer.style.width)-4*l.Menu.menuBorder) + parseInt(menuLayer.style.left) + l.Menu.submenuXOffset;				} else {					top += parseInt(l.style.top);					if( l.Menu.submenuRelativeToItem ) left = parseInt(menuLayer.style.left) + parseInt(l.style.left) + parseInt(l.style.width) + (2*l.Menu.menuBorder) + l.Menu.submenuXOffset;					else left = (parseInt(menuLayer.style.width)-4*l.Menu.menuBorder) + parseInt(menuLayer.style.left) + l.Menu.submenuXOffset;				}				s.top = top + 'px';				s.left = left + 'px';			}			childMenu.style.visibility = "inherit";		} else return;		window.activeMenus[window.activeMenus.length] = childMenu;	}}function hideActiveMenus() {	if (!window.activeMenus) return;	for (var i=0; i < window.activeMenus.length; i++) {		if (!activeMenus[i]) continue;		if (activeMenus[i].visibility && activeMenus[i].Menu && !window.mmIsOpera) {			activeMenus[i].visibility = "hidden";			activeMenus[i].Menu.container.visibility = "hidden";			activeMenus[i].Menu.container.clip.left = 0;		} else if (activeMenus[i].style) {			var s = activeMenus[i].style;			s.visibility = "hidden";			s.left = '-200px';			s.top = '-200px';		}	}	if (window.ActiveMenuItem) hideMenu(false, false);	window.activeMenus.length = 0;}function moveXbySlicePos (x, img) { 	if (!document.layers) {		var onWindows = navigator.platform ? navigator.platform == "Win32" : false;		var macIE45 = document.all && !onWindows && getExplorerVersion() == 4.5;		var par = img;		var lastOffset = 0;		while(par){			if( par.leftMargin && ! onWindows ) x += parseInt(par.leftMargin);			if( (par.offsetLeft != lastOffset) && par.offsetLeft ) x += parseInt(par.offsetLeft);			if( par.offsetLeft != 0 ) lastOffset = par.offsetLeft;			par = macIE45 ? par.parentElement : par.offsetParent;		}	} else if (img.x) x += img.x;	return x;}function moveYbySlicePos (y, img) {	if(!document.layers) {		var onWindows = navigator.platform ? navigator.platform == "Win32" : false;		var macIE45 = document.all && !onWindows && getExplorerVersion() == 4.5;		var par = img;		var lastOffset = 0;		while(par){			if( par.topMargin && !onWindows ) y += parseInt(par.topMargin);			if( (par.offsetTop != lastOffset) && par.offsetTop ) y += parseInt(par.offsetTop);			if( par.offsetTop != 0 ) lastOffset = par.offsetTop;			par = macIE45 ? par.parentElement : par.offsetParent;		}			} else if (img.y >= 0) y += img.y;	return y;}




var my_Dir = new Array();
var my_images = new Array();
var SLIDE_load = new Array();
var SLIDE_status, SLIDE_timeout;
var SLIDE_actual = 1;
var SLIDE_speed = 6000;
var SLIDE_fade = 2;

//var martin_message = new Array();
//martin_message[1] = "<a href='Default.aspx?tabid=119'>Cockrell Hill Students of the Month...</a>";
//martin_message[2] = "<a href='Default.aspx?tabid=120'>Top 25 Honored at Foundation Gala . . .</a>"; 
//martin_message[3] = "<a href='Default.aspx?tabid=121'>Excellent Spellers...</a>";
//martin_message[4] = "<a href='Default.aspx?tabid=122'>Read Across America...</a>";
//martin_message[5] = "<a href='Default.aspx?tabid=123'>Congratulations Eagles...</a>";

//var martin_counter = new Array();
//martin_counter[1] = "<u><a href='Default.aspx?tabid=119'>1</a></u> 2 3 4 5";
//martin_counter[2] = "1 <u><a href='Default.aspx?tabid=120'>2</a></u> 3 4 5"; 
//martin_counter[3] = "1 2 <u><a href='Default.aspx?tabid=121'>3</a></u> 4 5";
//martin_counter[4] = "1 2 3 <u><a href='Default.aspx?tabid=122'>4</a></u> 5";
//martin_counter[5] = "1 2 3 4 <u><a href='Default.aspx?tabid=123'>5</a></u>";

//var martin_title = new Array();
//martin_title[1] = "Image 1 story title content test.";
//martin_title[2] = "Image 2 story title content test.";
//martin_title[3] = "Image 3 story title content test.";
//martin_title[4] = "Image 4 story title content test.";
//martin_title[5] = "Image 5 story title content test.";


//martin_Img1btmlinks = new Array();
//martin_Img1btmlinks[0] = "<a href='Default.aspx?tabid=119'>Image 1 bottom linkA content test...</a>";
//martin_Img1btmlinks[1] = "<a href='Default.aspx?tabid=120'>Image 1 bottom linkB content test...</a>";
//martin_Img1btmlinks[2] = "<a href='Default.aspx?tabid=120'>Image 1 bottom linkC content test...</a>";
//martin_Img1btmlinks[3] = "<a href='Default.aspx?tabid=122'>Image 1 bottom linkD content test...</a>";

//martin_Img1btmlinksType = new Array();
//martin_Img1btmlinksType[0] = "video";
//martin_Img1btmlinksType[1] = "photo";
//martin_Img1btmlinksType[2] = "link";
//martin_Img1btmlinksType[3] = "video";

//martin_Img2btmlinks = new Array();
//martin_Img2btmlinks[0] = "<a href='Default.aspx?tabid=119'>Image 2 bottom linkA content test...</a>";
//martin_Img2btmlinks[1] = "<a href='Default.aspx?tabid=120'>Image 2 bottom linkB content test...</a>";
//martin_Img2btmlinks[2] = "<a href='Default.aspx?tabid=120'>Image 2 bottom linkC content test...</a>";
//martin_Img2btmlinks[3] = "<a href='Default.aspx?tabid=122'>Image 2 bottom linkD content test...</a>";

//martin_Img2btmlinksType = new Array();
//martin_Img2btmlinksType[0] = "photo";
//martin_Img2btmlinksType[1] = "photo";
//martin_Img2btmlinksType[2] = "video";
//martin_Img1btmlinksType[3] = "link";

//martin_Img3btmlinks = new Array();
//martin_Img3btmlinks[0] = "<a href='Default.aspx?tabid=119'>Image 3 bottom linkA content test...</a>";
//martin_Img3btmlinks[1] = "<a href='Default.aspx?tabid=120'>Image 3 bottom linkB content test...</a>";
//martin_Img3btmlinks[2] = "<a href='Default.aspx?tabid=120'>Image 3 bottom linkC content test...</a>";
//martin_Img3btmlinks[3] = "<a href='Default.aspx?tabid=122'>Image 3 bottom linkD content test...</a>";

//martin_Img4btmlinks = new Array();
//martin_Img4btmlinks[0] = "<a href='Default.aspx?tabid=119'>Image 4 bottom linkA content test...</a>";
//martin_Img4btmlinks[1] = "<a href='Default.aspx?tabid=120'>Image 4 bottom linkB content test...</a>";
//martin_Img4btmlinks[2] = "<a href='Default.aspx?tabid=120'>Image 4 bottom linkC content test...</a>";
//martin_Img4btmlinks[3] = "<a href='Default.aspx?tabid=122'>Image 4 bottom linkD content test...</a>";
//martin_Img4btmlinksType = new Array();
//martin_Img4btmlinksType[0] = "video";
//martin_Img4btmlinksType[1] = "link";

//martin_Img5btmlinks = new Array();
//martin_Img5btmlinks[0] = "<a href='Default.aspx?tabid=119'>Image 5 bottom linkA content test...</a>";
//martin_Img5btmlinks[1] = "<a href='Default.aspx?tabid=120'>Image 5 bottom linkB content test...</a>";
//martin_Img5btmlinks[2] = "<a href='Default.aspx?tabid=120'>Image 5 bottom linkC content test...</a>";
//martin_Img5btmlinks[3] = "<a href='Default.aspx?tabid=122'>Image 5 bottom linkD content test...</a>";
//martin_Img5btmlinksType = new Array();
//martin_Img5btmlinksType[0] = "photo";
//martin_Img5btmlinksType[1] = "photo";
//martin_Img5btmlinksType[2] = "video";





for (my_Dir = 1; my_Dir <= martin_message.length-1; my_Dir++)
{
my_images[my_Dir] = '/images/'+ my_Dir + '.jpg';
SLIDE_load[my_Dir] = new Image();
SLIDE_load[my_Dir].src = my_images[my_Dir];
}

for (my_Dir = 1; my_Dir <= martin_counter.length-1; my_Dir++)
{
}
var SLIDE_count = my_images.length-1;

//function SLIDE_start()
//{
//document.getElementById('SLIDE_play').disabled = false;
//document.images.SLIDE_picBox.src = SLIDE_load[SLIDE_actual].src;
//document.getElementById("SLIDE_textBox").innerHTML= martin_message[SLIDE_actual];
//document.getElementById("SLIDE_counter").innerHTML= martin_counter[SLIDE_actual];

//SLIDE_timeout = setTimeout("SLIDE_play()",SLIDE_speed);
//}

function SLIDE_play()
{
document.getElementById('SLIDE_play').disabled = true;
document.getElementById('SLIDE_pause').disabled = false;
SLIDE_actual++;
SLIDE_slide();      
 
SLIDE_status = 'SLIDE_play';
SLIDE_timeout = setTimeout("SLIDE_play()",SLIDE_speed);
}
function __dnn_SLIDE_play()
{
document.getElementById('SLIDE_play').disabled = true;
document.getElementById('SLIDE_pause').disabled = false;
SLIDE_actual++;
SLIDE_slide();
SLIDE_status = 'SLIDE_play';
SLIDE_timeout = setTimeout("SLIDE_play()",SLIDE_speed);
}

function __dnn_SLIDE_pause()
{
clearTimeout(SLIDE_timeout);
SLIDE_status = 'SLIDE_pause';
document.getElementById('SLIDE_pause').disabled = true;
document.getElementById('SLIDE_play').disabled = false; 
}

//function SLIDE_pause()
//{
//clearTimeout(SLIDE_timeout);
//SLIDE_status = 'SLIDE_pause';
//document.getElementById('SLIDE_pause').disabled = true;
//document.getElementById('SLIDE_play').disabled = false; 
//}
function __dnn_SLIDE_back()
{
clearTimeout(SLIDE_timeout);
SLIDE_actual--;
SLIDE_slide();
if (SLIDE_status != 'SLIDE_pause') SLIDE_timeout = setTimeout("SLIDE_play()",SLIDE_speed);
}
function __dnn_SLIDE_forward()
{
clearTimeout(SLIDE_timeout);
SLIDE_actual++;
SLIDE_slide()
if (SLIDE_status != 'SLIDE_pause') SLIDE_timeout = setTimeout("SLIDE_play()",SLIDE_speed);
}
function SLIDE_slide()
{

    var noOfRows = document.getElementById("TblBtmLinks").rows.length;
      for(var i=0; i<noOfRows;i++)
     {
//      if(document.getElementById("TblBtmLinks").Rows[i]!=null) 
      document.getElementById("TblBtmLinks").deleteRow(0);
     }
      

if (SLIDE_status != 'SLIDE_pause')
{
document.getElementById('SLIDE_play').disabled = true;
document.getElementById('SLIDE_pause').disabled = false;
}
if (SLIDE_actual > (SLIDE_count)) SLIDE_actual= 1;
if (SLIDE_actual < 1) SLIDE_actual = SLIDE_count;
if (document.all)
{
document.getElementById("SLIDE_textBox").style.background = "transparent";
document.images.SLIDE_picBox.style.filter="blendTrans(duration=2)";
document.images.SLIDE_picBox.style.filter="blendTrans(duration=SLIDE_fade)";
document.images.SLIDE_picBox.filters.blendTrans.Apply();
}
document.images.SLIDE_picBox.src = SLIDE_load[SLIDE_actual].src;
if (document.getElementById) document.getElementById("SLIDE_textBox").innerHTML= martin_message[SLIDE_actual];
if (document.getElementById) document.getElementById("SLIDE_counter").innerHTML= martin_counter[SLIDE_actual]; 
if (document.all) document.images.SLIDE_picBox.filters.blendTrans.Play();

if (document.getElementById) document.getElementById("SLIDE_DESC").innerHTML= martin_title[SLIDE_actual];
LoadDynamicLinks(SLIDE_actual);    
    
//document.getElementById("TblBtmLinks").insertRow(lastRow);

//if(martin_btmlinkA[SLIDE_actual].length<1)
//document.getElementById("videoIcon").style.visibility = "hidden";
}

function LoadDynamicLinks(actualSlide)
{
    if(actualSlide == 1)
  {
    for(var i=0; i<martin_Img1btmlinks.length; i++)
    {     
      var x= document.getElementById("TblBtmLinks").insertRow(i);
      var imgName = "gxp_text_ICON.gif";
      var newCell1 = x.insertCell(0);           
      
      if(martin_Img1btmlinksType[i]=="video")
      imgName = "gxp_video_ICON.gif";
      else if(martin_Img1btmlinksType[i]=="photo")
      imgName = "gxp_camera_ICON.gif";
      else if(martin_Img1btmlinksType[i]=="link")
      imgName = "gxp_www_ICON.gif";
      
      newCell1.innerHTML="<IMG height=25 src='/desotoisd/images/"+imgName+"' width=25>";
      newCell1.align = 'right';
      var newCell2 = x.insertCell(1);
      newCell2.innerHTML=martin_Img1btmlinks[i];
    }
  }
 
 if(actualSlide == 2)
 {
    for(var i=0; i<martin_Img2btmlinks.length; i++)
    {     
      var x= document.getElementById("TblBtmLinks").insertRow(i);
      var imgName = "gxp_text_ICON.gif";
      var newCell1 = x.insertCell(0);           
      
      if(martin_Img2btmlinksType[i]=="video")
      imgName = "gxp_video_ICON.gif";
      else if(martin_Img2btmlinksType[i]=="photo")
      imgName = "gxp_camera_ICON.gif";
      else if(martin_Img2btmlinksType[i]=="link")
      imgName = "gxp_www_ICON.gif";
      
      newCell1.innerHTML="<IMG height=25 src='/desotoisd/images/"+imgName+"' width=25>";
      newCell1.align = 'right';
      var newCell2 = x.insertCell(1);
      newCell2.innerHTML=martin_Img2btmlinks[i];
    }
  }
 
 if(actualSlide == 3)
 {
    for(var i=0; i<martin_Img3btmlinks.length; i++)
    {     
      var x= document.getElementById("TblBtmLinks").insertRow(i);
      var imgName = "gxp_text_ICON.gif";
      var newCell1 = x.insertCell(0);           
      
      if(martin_Img3btmlinksType[i]=="video")
      imgName = "gxp_video_ICON.gif";
      else if(martin_Img3btmlinksType[i]=="photo")
      imgName = "gxp_camera_ICON.gif";
      else if(martin_Img3btmlinksType[i]=="link")
      imgName = "gxp_www_ICON.gif";
      
      newCell1.innerHTML="<IMG height=25 src='/desotoisd/images/"+imgName+"' width=25>";
      newCell1.align = 'right';
      var newCell2 = x.insertCell(1);
      newCell2.innerHTML=martin_Img3btmlinks[i];
    }
  }

 
 if(actualSlide == 4)
 {
    for(var i=0; i<martin_Img4btmlinks.length; i++)
    {     
      var x= document.getElementById("TblBtmLinks").insertRow(i);
      var imgName = "gxp_text_ICON.gif";
      var newCell1 = x.insertCell(0);           
      
      if(martin_Img4btmlinksType[i]=="video")
      imgName = "gxp_video_ICON.gif";
      else if(martin_Img4btmlinksType[i]=="photo")
      imgName = "gxp_camera_ICON.gif";
      else if(martin_Img4btmlinksType[i]=="link")
      imgName = "gxp_www_ICON.gif";
      
      newCell1.innerHTML="<IMG height=25 src='/desotoisd/images/"+imgName+"' width=25>";
      newCell1.align = 'right';
      var newCell2 = x.insertCell(1);
      newCell2.innerHTML=martin_Img4btmlinks[i];
    }
  }
 
 if(actualSlide == 5)
 {
    for(var i=0; i<martin_Img5btmlinks.length; i++)
    {     
      var x= document.getElementById("TblBtmLinks").insertRow(i);
      var imgName = "gxp_text_ICON.gif";
      var newCell1 = x.insertCell(0);           
      
      if(martin_Img5btmlinksType[i]=="video")
      imgName = "gxp_video_ICON.gif";
      else if(martin_Img5btmlinksType[i]=="photo")
      imgName = "gxp_camera_ICON.gif";
      else if(martin_Img5btmlinksType[i]=="link")
      imgName = "gxp_www_ICON.gif";
      
      newCell1.innerHTML="<IMG height=25 src='/desotoisd/images/"+imgName+"' width=25>";
      newCell1.align = 'right';
      var newCell2 = x.insertCell(1);
      newCell2.innerHTML=martin_Img5btmlinks[i];
    }
  }
 
}


function SLIDE_speeds(SLIDE_valgt)
{
SLIDE_speed = SLIDE_valgt.options[SLIDE_valgt.selectedIndex].value;
}

function __dnn_OnLoad()
{
	
    SLIDE_start();
}

