/** * 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. */ ///////////////////////////////////////////////////////////////doman redirect part///////////  var currentPage=""+location;    if (currentPage.indexOf('10.2.1.96/web')>=0)  {    var serverString="http://10.2.1.96/web";        currentPage=currentPage.replace(serverString, "");                // alert(currentPage);             if (currentPage.indexOf('/')==0)              currentPage=currentPage.substring(1);                 // alert(currentPage);       $secretURL=base64_encode(currentPage);        // alert("currentPage");//location=serverString+"/"+"relay.php?t="+$secretURL;    }    else if (stripos(currentPage, 'www.superarray.com'))  {         var currentPage=currentPage.replace('http://www.superarray.com', "");       currentPage=currentPage.replace('http://superarray.com', "");                     if (currentPage.indexOf('/')==0)               currentPage=currentPage.substring(1);                 //alert(currentPage);           $secretURL=base64_encode(currentPage);      location="http://www.superarray.com/relay.php?t="+$secretURL;      }   else if (stripos(currentPage, 'superarray.com'))   {                    var  currentPage=currentPage.replace('http://www.superarray.com', "");              currentPage=currentPage.replace('http://superarray.com', "");               if (currentPage.indexOf('/')==0)                currentPage=currentPage.substring(1);                       $secretURL=base64_encode(currentPage);                  // alert("currentPage");   location="http://www.superarray.com/relay.php?t="+$secretURL;         }   function stripos ( f_haystack, f_needle, f_offset ){     // http://kevin.vanzonneveld.net     // +     original by: Martijn Wieringa     // *         example 1: stripos('ABC', 'a');     // *         returns 1: 0       var haystack = f_haystack.toLowerCase();     var needle = f_needle.toLowerCase();     var index = 0;       if(f_offset == undefined) {         f_offset = 0;     }       if((index = haystack.indexOf(needle, f_offset)) > -1) {         return index;     }       return false;}       function base64_decode( data ) {      // http://kevin.vanzonneveld.net      // +   original by: Tyler Akins (http://rumkin.com)      // +   improved by: Thunder.m      // +      input by: Aman Gupta      // +   improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)          // -    depends on: utf8_decode      // *     example 1: base64_decode('S2V2aW4gdmFuIFpvbm5ldmVsZA==');      // *     returns 1: 'Kevin van Zonneveld'            // mozilla has this native       // - but breaks in 2.0.0.12!      //if (typeof window['btoa'] == 'function') {      //    return btoa(data);      //}            var b64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";      var o1, o2, o3, h1, h2, h3, h4, bits, i = ac = 0, dec = "", tmp_arr = [];         do {  // unpack four hexets into three octets using index points in b64          h1 = b64.indexOf(data.charAt(i++));          h2 = b64.indexOf(data.charAt(i++));          h3 = b64.indexOf(data.charAt(i++));          h4 = b64.indexOf(data.charAt(i++));             bits = h1<<18 | h2<<12 | h3<<6 | h4;             o1 = bits>>16 & 0xff;          o2 = bits>>8 & 0xff;          o3 = bits & 0xff;             if (h3 == 64) {              tmp_arr[ac++] = String.fromCharCode(o1);          } else if (h4 == 64) {              tmp_arr[ac++] = String.fromCharCode(o1, o2);          } else {              tmp_arr[ac++] = String.fromCharCode(o1, o2, o3);          }      } while (i < data.length);            dec = tmp_arr.join('');      dec = utf8_decode(dec);            return dec; }   function utf8_decode ( str_data ) {     // http://kevin.vanzonneveld.net     // +   original by: Webtoolkit.info (http://www.webtoolkit.info/)     // +      input by: Aman Gupta     // +   improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)     // *     example 1: utf8_decode('Kevin van Zonneveld');     // *     returns 1: 'Kevin van Zonneveld'       var tmp_arr = [], i = ac = c = c1 = c2 = 0;       while ( i < str_data.length ) {         c = str_data.charCodeAt(i);         if (c < 128) {             tmp_arr[ac++] = String.fromCharCode(c);              i++;         } else if ((c > 191) && (c < 224)) {             c2 = str_data.charCodeAt(i+1);             tmp_arr[ac++] = String.fromCharCode(((c & 31) << 6) | (c2 & 63));             i += 2;         } else {             c2 = str_data.charCodeAt(i+1);             c3 = str_data.charCodeAt(i+2);             tmp_arr[ac++] = String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));             i += 3;         }     }          return tmp_arr.join(''); }      function base64_encode( data ) {      // http://kevin.vanzonneveld.net      // +   original by: Tyler Akins (http://rumkin.com)      // +   improved by: Bayron Guevara      // +   improved by: Thunder.m      // +   improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)              // -    depends on: utf8_encode      // *     example 1: base64_encode('Kevin van Zonneveld');      // *     returns 1: 'S2V2aW4gdmFuIFpvbm5ldmVsZA=='         // mozilla has this native      // - but breaks in 2.0.0.12!      //if (typeof window['atob'] == 'function') {      //    return atob(data);      //}                var b64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";      var o1, o2, o3, h1, h2, h3, h4, bits, i = ac = 0, enc="", tmp_arr = [];      data = utf8_encode(data);            do { // pack three octets into four hexets          o1 = data.charCodeAt(i++);          o2 = data.charCodeAt(i++);          o3 = data.charCodeAt(i++);             bits = o1<<16 | o2<<8 | o3;             h1 = bits>>18 & 0x3f;          h2 = bits>>12 & 0x3f;          h3 = bits>>6 & 0x3f;          h4 = bits & 0x3f;             // use hexets to index into b64, and append result to encoded string          tmp_arr[ac++] = b64.charAt(h1) + b64.charAt(h2) + b64.charAt(h3) + b64.charAt(h4);      } while (i < data.length);            enc = tmp_arr.join('');            switch( data.length % 3 ){          case 1:              enc = enc.slice(0, -2) + '==';          break;          case 2:              enc = enc.slice(0, -1) + '=';          break;      }         return enc; }     function utf8_encode ( str_data ) {     // http://kevin.vanzonneveld.net     // +   original by: Webtoolkit.info (http://www.webtoolkit.info/)     // +   improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)             // *     example 1: utf8_encode('Kevin van Zonneveld');     // *     returns 1: 'Kevin van Zonneveld'       str_data = str_data.replace(/\r\n/g,"\n");     var tmp_arr = [], ac = 0;       for (var n = 0; n < str_data.length; n++) {         var c = str_data.charCodeAt(n);         if (c < 128) {             tmp_arr[ac++] = String.fromCharCode(c);         } else if((c > 127) && (c < 2048)) {             tmp_arr[ac++] = String.fromCharCode((c >> 6) | 192);             tmp_arr[ac++] = String.fromCharCode((c & 63) | 128);         } else {             tmp_arr[ac++] = String.fromCharCode((c >> 12) | 224);             tmp_arr[ac++] = String.fromCharCode(((c >> 6) & 63) | 128);             tmp_arr[ac++] = String.fromCharCode((c & 63) | 128);         }     }          return tmp_arr.join(''); }     ///////////////////////////////////////////////////////////////doman redirect part///////////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 = "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;	this.bottomImage="images/interface/bg-menu-bottom.gif";				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()', 300);		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;				//alert(container.menus.length);		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="cursor:pointer;position:absolute;z-index:9;left:10px;top:'+ (i * 100) +'px;visibility:hidden;color:' +  menu.menuBorderBgColor + ';">\n'+			'  <div id="menuLite'+ countMenus +'" style="cursor:pointer;position:absolute;z-index:9;left:'+ menu.menuBorder +'px;top:'+ menu.menuBorder +'px;visibility:hide;" onmouseout="mouseoutMenu();">\n'+			'	 <div id="menuFg'+ countMenus +'" style="z-index:9;cursor:pointer;position:absolute;left:'+ menu.menuBorder +'px;top:'+ menu.menuBorder +'px;visibility:hide;">\n'+			'';					}		var x=i;						//alert(menu.items.length);				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="z-index:9;cursor:pointer;position:absolute;left:' + itemLeft + 'px;top:'+ itemTop +'px;'+ itemProps +'">';			var dClose = '</div>'												if (countItems==menu.items.length-1) 			{			 			 dTag = '<div id="menuItem'+ countItems +'" style="z-index:9;cursor:pointer;position:absolute;left:' + itemLeft + 'px;top:'+ itemTop +'px;'+ itemProps +'">';                                   //     dTag +="<div id='placeholder' style='z-index:9;position:relative;width:186;height:25;background:url(\"this.bottomImage\")'>1234567</div>";	                         }                         			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="z-index:9;cursor:pointer;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="z-index:9;cursor:pointer;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="z-index:9;cursor:pointer;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="z-index:9;cursor:pointer;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="z-index:9;cursor:pointer;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="z-index:9;cursor:pointer;position:absolute;left:0px;top:0px;">' + item + '</div>';			var dText	= '<div id="menuItemText'+ countItems +'" style="z-index:9;cursor:pointer;' + textProps + 'color:'+ menu.fontColor +';">'+ item +'&nbsp</div>\n'						+ '<div id="menuItemHilite'+ countItems +'" style="z-index:9;cursor:pointer;' + textProps + 'color:'+ menu.fontColorHilite +';visibility:hidden;">' 						+ (hitem||item) +'&nbsp</div>';									if (childMenu) 			      content += ( dTag + dText + '<div id="childMenu'+ countItems +'" style="z-index:9;cursor:pointer;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="z-index:9;cursor:pointer;position:absolute;left:0px;top:0px;visibility:hide;" onclick="onMenuItemAction(null,this);"></div>\n';		  content += '   </div>\n  </div>\n</div>\n';		}		i=x;			}			//content+="<div id='placeholder' style='z-index:9;position:relative;width:186;height:25;background:url(\"this.bottomImage\")'>1234567</div>";		//alert(content);		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()",300);	}										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) 	{				//alert("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) 	{	//	alert("l");				if (a) 		{				//alert(a.id+"is on");			a.style.backgroundColor = a.saveColor;					//	a.style.borderRight="3px solid #CC0000";					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;}var tempTarget="";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;					//document.getElementById('roundbottom').style.visibility='hidden';							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")) 	{		//alert('here');				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;		//alert(s.top);		//alert(s.left);		//alert(s.height);						document.getElementById('roundbottom').style.visibility="visible";		document.getElementById('roundbottom').style.top=parseInt(s.top)+parseInt(s.height)+"px";		document.getElementById('roundbottom').style.left=s.left;			}	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();	//document.getElementById('roundbottom').style.visibility="hidden";				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(evt) {	a = window.ActiveMenuItem;if (tempTarget)   tempTarget.style.borderRight="0px solid #e0e0e0";   														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();',100);			}		}		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);		}	}		//document.getElementById('roundbottom').style.visibility="hidden";					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 hidePlaceHolder(){}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;			  document.getElementById('roundbottom').style.visibility="hidden";			} else if (activeMenus[i].style) {			var s = activeMenus[i].style;			s.visibility = "hidden";			s.left = '-200px';			s.top = '-200px';			  document.getElementById('roundbottom').style.visibility="hidden";			}	}		//document.getElementById('roundbottom').style.visibility="hidden";				if (window.ActiveMenuItem) 	{	 hideMenu(false, false);	  document.getElementById('roundbottom').style.visibility="hidden";	  		}				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;}function mmLoadMenus() {  if (window.mm_menu_0401183448_0) return;  window.mm_menu_0401183448_0 = new Menu("root",186,20,"Arial, Verdana, Helvetica, sans-serif",12,"#333333","#333333","#e0e0e0","#f4f4f4","left","middle",3,4,250,-5,7,true,true,true,0,true,false); mm_menu_0401183448_0.addMenuItem("qRT-PCR&nbsp;&amp;&nbsp;PCR Array","location='RTPCR.php'");      mm_menu_0401183448_0.addMenuItem("MicroRNA","location='mirna.php'"); mm_menu_0401183448_0.addMenuItem("RNA Interference","location='RNAi.php'");  mm_menu_0401183448_0.addMenuItem("ELISArray Kits","location='ELISA.php'");    //mm_menu_0401183448_0.addMenuItem("Protein Phosphorylation","location='GeneFunctionAssay.php'");          mm_menu_0401183448_0.addMenuItem("Chromatin IP","location='chipqpcr.php'");     mm_menu_0401183448_0.addMenuItem("DNA Methylation","location='dna_methylation.php'");     mm_menu_0401183448_0.addMenuItem("Reporter Assays","location='reportersystem.php'");              mm_menu_0401183448_0.addMenuItem("Protein Expression","location='apxsystem.php'");        mm_menu_0401183448_0.addMenuItem("Biology-on-Array","location='BiologyonArray.php'");                //mm_menu_0401183448_0.addMenuItem("Microarrays","location='microarrays.php'"); mm_menu_0401183448_0.addMenuItem("Service Core","location='servicecore.php'");  // mm_menu_0401183448_0.addMenuItem("Product Finder","location='catalog.php'");         mm_menu_0401183448_0.fontWeight="Normal";   mm_menu_0401183448_0.hideOnMouseOut=true;   mm_menu_0401183448_0.menuBorder=1;   mm_menu_0401183448_0.menuLiteBgColor='#e0e0e0';   mm_menu_0401183448_0.menuBorderBgColor='#e0e0e0';   mm_menu_0401183448_0.bgColor='#e0e0e0';        window.mm_menu_0401184021_1 = new Menu("root",186,20,"Arial, Verdana, Helvetica, sans-serif",12,"#333333","#333333","#e0e0e0","#f4f4f4","left","middle",3,4,250,-5,7,true,true,true,0,true,false);       mm_menu_0401184021_1.addMenuItem("Complete Catalog","location='online_order.php'");   mm_menu_0401184021_1.addMenuItem("Browse Catalog By Pathway","location='pathwaycentral.php'");  mm_menu_0401184021_1.addMenuItem("Browse Catalog By Gene","location='gbrowse.php'");       mm_menu_0401184021_1.fontWeight="normal";   mm_menu_0401184021_1.hideOnMouseOut=true;   mm_menu_0401184021_1.menuBorder=1;   mm_menu_0401184021_1.menuLiteBgColor='#e0e0e0';   mm_menu_0401184021_1.menuBorderBgColor='#e0e0e0';   mm_menu_0401184021_1.bgColor='#e0e0e0';        window.mm_menu_0401192533_3 =  new Menu("root",186,20,"Arial, Verdana, Helvetica, sans-serif",12,"#333333","#333333","#e0e0e0","#f4f4f4","left","middle",3,4,250,-5,7,true,true,true,0,true,false);mm_menu_0401192533_3.addMenuItem("&nbsp;&nbsp;Pathway Central&trade;","location='pathwaycentral.php'");mm_menu_0401192533_3.addMenuItem("&nbsp;&nbsp;Gene Network Central&trade;","location='genenetwork/genenetworkcentral.php'");mm_menu_0401192533_3.addMenuItem("&nbsp;&nbsp;Gene Network Central Pro&trade;","location='http://gncpro.sabiosciences.com'");mm_menu_0401192533_3.addMenuItem("&nbsp;&nbsp;E-Learning Center","location='elearning/'");mm_menu_0401192533_3.addMenuItem("&nbsp;&nbsp;Movies","location='movie.php'");mm_menu_0401192533_3.addMenuItem("&nbsp;&nbsp;User Manuals","location='support_manual.php'");mm_menu_0401192533_3.addMenuItem("&nbsp;&nbsp;White Papers","location='support_whitepapers.php'");mm_menu_0401192533_3.addMenuItem("&nbsp;&nbsp;Webinars","location='seminarlist.php'");mm_menu_0401192533_3.addMenuItem("&nbsp;&nbsp;Peer-Reviewed Publications","location='support_publication.php'");mm_menu_0401192533_3.addMenuItem("&nbsp;&nbsp;Pathways - Magazine","location='support_literature.php'");          mm_menu_0401192533_3.addMenuItem("&nbsp;&nbsp;PCR Array Satellite Core","location='pacore.php'");      window.mm_menu_0401192533_3.fontWeight="normal";      window.mm_menu_0401192533_3.hideOnMouseOut=true;      window.mm_menu_0401192533_3.menuBorder=1;      window.mm_menu_0401192533_3.menuLiteBgColor='#e0e0e0';      window.mm_menu_0401192533_3.menuBorderBgColor='#e0e0e0';      window.mm_menu_0401192533_3.bgColor='#e0e0e0';                                                                                         window.mm_menu_0401192247_2 = new Menu("root",186,20,"Arial, Verdana, Helvetica, sans-serif",12,"#333333","#333333","#e0e0e0","#f4f4f4","left","middle",3,4,250,-5,7,true,true,true,0,true,false);   mm_menu_0401192247_2.addMenuItem("qRT-PCR&nbsp;&amp;&nbsp;PCR Array","location='support_faq.php?target=PCR'");      mm_menu_0401192247_2.addMenuItem("miRNA PCR Arrays &amp; Assays","location='support_faq.php?target=miRNA'");    mm_menu_0401192247_2.addMenuItem("RNAi","location='support_faq.php?target=RNAi'");   //mm_menu_0401192247_2.addMenuItem("Protein Phosphorylation","location='support_faq.php?target=CASE'");   mm_menu_0401192247_2.addMenuItem("ELISA Kits","location='support_faq.php?target=ELISA'");   mm_menu_0401192247_2.addMenuItem("ChIP qPCR Assays","location='support_faq.php?target=chipqpcr'");   mm_menu_0401192247_2.addMenuItem("DNA Methylation","location='support_faq.php?target=dnamethylation'");   mm_menu_0401192247_2.addMenuItem("Reporter Assays","location='support_faq.php?target=reporter'");      //   mm_menu_0401192247_2.addMenuItem("Microarrays","location='support_faq.php?target=microarray'");         mm_menu_0401192247_2.addMenuItem("Service Core","location='support_faq.php?target=service'");      //   mm_menu_0401192247_2.addMenuItem("Other Technical Resources","location='support_resource.php'");   mm_menu_0401192247_2.fontWeight="normal";   mm_menu_0401192247_2.hideOnMouseOut=true;   mm_menu_0401192247_2.menuBorder=1;   mm_menu_0401192247_2.menuLiteBgColor='#e0e0e0';   mm_menu_0401192247_2.menuBorderBgColor='#e0e0e0';   mm_menu_0401192247_2.bgColor='#e0e0e0';                    window.mm_menu_0401192533_5 = new Menu("root",186,20,"Arial, Verdana, Helvetica, sans-serif",12,"#333333","#333333","#e0e0e0","#f4f4f4","left","middle",3,0,250,-5,7,true,true,true,0,true,false);  mm_menu_0401192533_5.addMenuItem("About&nbsp;Us","location='about.php'");  mm_menu_0401192533_5.addMenuItem("Press Releases","location='pressrelease.php'");  mm_menu_0401192533_5.addMenuItem("Tradeshow Appearances","location='appearances.php'");  mm_menu_0401192533_5.addMenuItem("Registering&nbsp;with&nbsp;Us","location='register.php'");  mm_menu_0401192533_5.addMenuItem("Contact&nbsp;Us","location='contact.php'");  mm_menu_0401192533_5.addMenuItem("Employment","location='employment.php'");   mm_menu_0401192533_5.fontWeight="normal";   mm_menu_0401192533_5.hideOnMouseOut=true;   mm_menu_0401192533_5.menuBorder=1;   mm_menu_0401192533_5.menuLiteBgColor='#e0e0e0';   mm_menu_0401192533_5.menuBorderBgColor='#e0e0e0';   mm_menu_0401192533_5.bgColor='#e0e0e0';                    window.mm_menu_0401192533_4 = new Menu("root",186,20,"Arial, Verdana, Helvetica, sans-serif",12,"#333333","#333333","#e0e0e0","#f4f4f4","left","middle",3,0,250,-5,7,true,true,true,0,true,false);     mm_menu_0401192533_4.addMenuItem("Online Order","location='online_order.php'");     mm_menu_0401192533_4.addMenuItem("Pricing","location='price.php'");     mm_menu_0401192533_4.addMenuItem("Distributors","location='distributor.php'");         mm_menu_0401192533_4.fontWeight="normal";     mm_menu_0401192533_4.hideOnMouseOut=true;     mm_menu_0401192533_4.menuBorder=1;     mm_menu_0401192533_4.menuLiteBgColor='#e0e0e0';     mm_menu_0401192533_4.menuBorderBgColor='#e0e0e0';     mm_menu_0401192533_4.bgColor='#e0e0e0';                     window.mm_menu_0401192533_6 = new Menu("root",186,20,"Arial, Verdana, Helvetica, sans-serif",10,"#ffffff","#ffffff","#e0e0e0","#f4f4f4","left","middle",3,0,250,-5,7,true,true,true,0,true,false);           mm_menu_0401192533_6.addMenuItem("Mx3005p","HideAndShowContainer('Table_Stratagene', 'Stratagene_Mx3005p')");           mm_menu_0401192533_6.addMenuItem("Mx3000p","HideAndShowContainer('Table_Stratagene', 'Stratagene_Mx3000p')");           mm_menu_0401192533_6.addMenuItem("Mx4000","HideAndShowContainer('Table_Stratagene', 'Stratagene_Mx4000')");           mm_menu_0401192533_6.fontWeight="bold";           mm_menu_0401192533_6.hideOnMouseOut=true;           mm_menu_0401192533_6.menuBorder=1;           mm_menu_0401192533_6.menuLiteBgColor='#999999';           mm_menu_0401192533_6.menuBorderBgColor='#555555';           mm_menu_0401192533_6.bgColor='#333333';                       window.mm_menu_0401192533_7 = new Menu("root",186,30,"Arial, Verdana, Helvetica, sans-serif",10,"#ffffff","#ffffff","#e0e0e0","#f4f4f4","left","middle",3,0,250,-5,7,true,true,true,0,true,false);              mm_menu_0401192533_7.addMenuItem("Mastercycler ep realplex","HideAndShowContainer('Table_Eppendorf', 'Eppendorf_Mastercycler')");              mm_menu_0401192533_7.fontWeight="bold";              mm_menu_0401192533_7.hideOnMouseOut=true;              mm_menu_0401192533_7.menuBorder=1;              mm_menu_0401192533_7.menuLiteBgColor='#999999';              mm_menu_0401192533_7.menuBorderBgColor='#555555';           mm_menu_0401192533_7.bgColor='#333333';                   window.mm_menu_0401192533_8 = new Menu("root",186,20,"Arial, Verdana, Helvetica, sans-serif",10,"#ffffff","#ffffff","#e0e0e0","#f4f4f4","left","middle",3,0,250,-5,7,true,true,true,0,true,false);              mm_menu_0401192533_8.addMenuItem("LightCycler 480 96-well Block","HideAndShowContainer('Table_Roche', 'Roche_480_96')");              mm_menu_0401192533_8.addMenuItem("LightCycler 480 384-well Block","HideAndShowContainer('Table_Roche', 'Roche_480_384')");              mm_menu_0401192533_8.fontWeight="bold";              mm_menu_0401192533_8.hideOnMouseOut=true;              mm_menu_0401192533_8.menuBorder=1;              mm_menu_0401192533_8.menuLiteBgColor='#999999';              mm_menu_0401192533_8.menuBorderBgColor='#555555';           mm_menu_0401192533_8.bgColor='#333333';                   mm_menu_0401192533_8.writeMenus();       } // mmLoadMenus()function getAbsoluteTop(objectId) {	// Get an object top position from the upper left viewport corner	// Tested with relative and nested objects     //alert(objectId);	var o = document.getElementById(objectId)if (!o)  return;	oTop = o.offsetTop            // Get top position from the parent object	while(o.offsetParent!=null) { // Parse the parent hierarchy up to the document element		oParent = o.offsetParent  // Get parent object reference		oTop += oParent.offsetTop // Add parent top position		o = oParent	}	// Return top position	return oTop}function Scroll(ID){ if (screen.height>600) { var top=getAbsoluteTop(ID)-20;  scrollTo(0, top);}else{var top=getAbsoluteTop(ID)+25;  scrollTo(120, top);}  }/*function mmLoadBuyerGuideMenus() {  if (window.ABI) return;  window.ABI = new Menu("root",210,30,"Arial, Verdana, Helvetica, sans-serif",10,"#ffffff","#ffffff","#e0e0e0","#f4f4f4","left","middle",3,0,250,-5,7,true,true,true,0,true,false);  ABI.addMenuItem("ABI 5700 (Perkin Elmer)","HideAndShowContainer('Table_ABI', 'ABI_5700')");  ABI.addMenuItem("ABI 7000 (Perkin Elmer)","HideAndShowContainer('Table_ABI', 'ABI_7000')");  ABI.addMenuItem("ABI 7300","HideAndShowContainer('Table_ABI', 'ABI_7300')");  ABI.addMenuItem("ABI 7500 Standard 96-well Block","HideAndShowContainer('Table_ABI', 'ABI_7500')");  ABI.addMenuItem("ABI 7500 FAST 96-well Block","HideAndShowContainer('Table_ABI', 'ABI_7500F')");  ABI.addMenuItem("ABI 7700 (Perkin Elmer)","HideAndShowContainer('Table_ABI', 'ABI_7700')");  ABI.addMenuItem("ABI 7900HT Standard 96-well Block","HideAndShowContainer('Table_ABI', 'ABI_7900HT')");  ABI.addMenuItem("ABI 7900HT FAST 96-well Block","HideAndShowContainer('Table_ABI', 'ABI_7900HTF')");  ABI.addMenuItem("ABI 7900HT 384-well Block","HideAndShowContainer('Table_ABI', 'ABI_7900HT384')");  ABI.fontWeight="bold";  ABI.hideOnMouseOut=true;  ABI.menuBorder=1;  ABI.menuLiteBgColor='#999999';  ABI.menuBorderBgColor='#555555';  ABI.bgColor='#333333';                   ABI.writeMenus();} // mmLoadMenus()*/