/***********************************************
*	(c) Ger Versluis 2000 version 13.10 August 1, 2004       *
*	You may use this script on non commercial sites.	          *
*	www.burmees.nl/menu			          *
*	You may remove all comments for faster loading	          *		
************************************************/
	var NoOffFirstLineMenus=8;			// Number of main menu  items
						// Colorvariables:
						// Color variables take HTML predefined color names or "#rrggbb" strings
						//For transparency make colors and border color ""
	var LowBgColor="#F0F0F0";			// Background color when mouse is not over
	var HighBgColor="#D0D0D0";			// Background color when mouse is over
	var FontLowColor="black";			// Font color when mouse is not over
	var FontHighColor="#0308E1";			// Font color when mouse is over
	var BorderColor="black";			// Border color
	var BorderWidthMain=1;			// Border width main items
	var BorderWidthSub=1;			// Border width sub items
 	var BorderBtwnMain=1;			// Border width between elements main items
	var BorderBtwnSub=1;			// Border width between elements sub items
	var FontFamily="arial,comic sans ms,technical";
	var FontSize=11;
	var FontBold=1;
	//var FontFamily="comic sans ms,technical,arial";	// Font family menu items
	//var FontSize=12;				// Font size menu items
	//var FontBold=0;				// Bold menu items 1 or 0
	var FontItalic=0;				// Italic menu items 1 or 0
	var MenuTextCentered="left";		// Item text position left, center or right
	var MenuCentered="center";			// Menu horizontal position can be: left, center, right
	var MenuVerticalCentered="bottom";		// Menu vertical position top, middle,bottom or static
	var ChildOverlap=.1;			// (.2) horizontal overlap child/ parent
	var ChildVerticalOverlap=.4;			// (.2) vertical overlap child/ parent
	var StartTop=0;				// Menu offset x coordinate
	var StartLeft=0;				// Menu offset y coordinate
	var VerCorrect=0;				// Multiple frames y correction
	var HorCorrect=0;				// Multiple frames x correction
	var DistFrmFrameBrdr=2;			// Distance between main menu and frame border
	var LeftPaddng=4;				// Left padding
	var TopPaddng=6;				// Top padding. If set to -1 text is vertically centered
	var FirstLineHorizontal=1;			// Number defines to which level the menu must unfold horizontal; 0 is all vertical
	var MenuFramesVertical=0;			// Frames in cols or rows 1 or 0
	var DissapearDelay=500;			// 10000 delay before menu folds in
	var UnfoldDelay=100;			// delay before sub unfolds	
	var TakeOverBgColor=0;			// Menu frame takes over background color subitem frame

var FirstLineFrame="l-window";
var SecLineFrame="r-window";
var DocTargetFrame="r-window";

//	var FirstLineFrame="navig";			// Frame where first level appears
//	var SecLineFrame="space";			// Frame where sub levels appear
//	var DocTargetFrame="space";		// Frame where target documents appear

	var TargetLoc="";				// span id for relative positioning
	var MenuWrap=1;				// enables/ disables menu wrap 1 or 0
	var RightToLeft=0;				// enables/ disables right to left unfold 1 or 0
	var BottomUp=0;				// enables/ disables Bottom up unfold 1 or 0
	var UnfoldsOnClick=0;			// Level 1 unfolds onclick/ onmouseover

var BaseHref=document.location.href.substring(0,document.location.href.lastIndexOf("/") +1);

//	var BaseHref="";				// BaseHref lets you specify the root directory for relative links. 
						// The script precedes your relative links with BaseHref
						// For instance: 
						// when your BaseHref= "http://www.MyDomain/" and a link in the menu is "subdir/MyFile.htm",
						// the script renders to: "http://www.MyDomain/subdir/MyFile.htm"
						// Can also be used when you use images in the textfields of the menu
						// "MenuX=new Array("<img src=\""+BaseHref+"MyImage\">"
						// For testing on your harddisk use syntax like: BaseHref="file:///C|/MyFiles/Homepage/"
var Arrws=[BaseHref+"tri-black.gif",6,7,BaseHref+"",0,0,BaseHref+"",0,0,BaseHref+"",0,0];
//var Arrws=[BaseHref+"tri.gif",5,10,BaseHref+"tridown.gif",10,5,BaseHref+"trileft.gif",5,10,BaseHref+"triup.gif",10,5];
	//var Arrws=["tri.gif",5,10,"tridown.gif",10,5,"trileft.gif",5,10,"triup.gif",10,5];
//	var Arrws=[BaseHref+"tri.gif",5,10,BaseHref+"tridown.gif",10,5,BaseHref+"trileft.gif",5,10,BaseHref+"triup.gif",10,5];

						// Arrow source, width and height.
						// If arrow images are not needed keep source ""

	var MenuUsesFrames=1;			// MenuUsesFrames is only 0 when Main menu, submenus,
						// document targets and script are in the same frame.
						// In all other cases it must be 1

	var RememberStatus=0;			// RememberStatus: When set to 1, menu unfolds to the presetted menu item. 
						// When set to 2 only the relevant main item stays highligthed
						// The preset is done by setting a variable in the head section of the target document.
						// <head>
						//	<script type="text/javascript">var SetMenu="2_2_1";</script>
						// </head>
						// 2_2_1 represents the menu item Menu2_2_1=new Array(.......

						// Below some pretty useless effects, since only IE6+ supports them
						// I provided 3 effects: MenuSlide, MenuShadow and MenuOpacity
						// If you don't need MenuSlide just leave in the line var MenuSlide="";
						// delete the other MenuSlide statements
						// In general leave the MenuSlide you need in and delete the others.
						// Above is also valid for MenuShadow and MenuOpacity
						// You can also use other effects by specifying another filter for MenuShadow and MenuOpacity.
						// You can add more filters by concanating the strings
	var BuildOnDemand=1;			// 1/0 When set to 1 the sub menus are build when the parent is moused over
	var BgImgLeftOffset=5;			// Only relevant when bg image is used as rollover
	var ScaleMenu=0;				// 1/0 When set to 0 Menu scales with browser text size setting

	var HooverBold=0;				// 1 or 0
	var HooverItalic=0;				// 1 or 0
	var HooverUnderLine=0;			// 1 or 0
	var HooverTextSize=0;			// 0=off, number is font size difference on hoover
	var HooverVariant=0;			// 1 or 0

	var MenuSlide="";
	//var MenuSlide="progid:DXImageTransform.Microsoft.RevealTrans(duration=.5, transition=19)";
	//var MenuSlide="progid:DXImageTransform.Microsoft.GradientWipe(duration=.5, wipeStyle=1)";

	var MenuShadow="";
	//var MenuShadow="progid:DXImageTransform.Microsoft.DropShadow(color=#888888, offX=2, offY=2, positive=1)";
	//var MenuShadow="progid:DXImageTransform.Microsoft.Shadow(color=#888888, direction=135, strength=3)";

	var MenuOpacity="";
	//var MenuOpacity="progid:DXImageTransform.Microsoft.Alpha(opacity=75)";

	function BeforeStart(){return}
	function AfterBuild(){return}
	function BeforeFirstOpen(){return}
	function AfterCloseAll(){return}
// *** menu ***
Menu1=new Array("Products","","",4,25,70,"","","","","","",-1,1,-1,"center","");
   Menu1_1=new Array("eValid","","",3,25,139,"","","","","","",-1,-1,-1,"","");
      Menu1_1_1=new Array("EVAL Download","../eValid/Products/Download.9/down.evalid.9.phtml?status=FORM","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu1_1_2=new Array("Overview","../eValid/general.summary.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu1_1_3=new Array("International","../eValid/Promotion/International/international.edition.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
   Menu1_2=new Array("Architecture","../eValid/Products/architecture.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
   Menu1_3=new Array("Product GUIs","","",4,25,139,"","","","","","",-1,-1,-1,"","");
      Menu1_3_1=new Array("Summary","../eValid/Products/Documentation.9/Movies/inventory.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu1_3_2=new Array("GUI Animations Catalog","../eValid/Products/Documentation.9/animations.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu1_3_3=new Array("Sample Chart","../eValid/Products/Charts/eVPerformance.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
      Menu1_3_4=new Array("Metrics Pop-Up","../eValid/Products/Documentation.9/Metrics/metrics.popup.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
   Menu1_4=new Array("Features","","",3,25,139,"","","","","","",-1,-1,-1,"","");
      Menu1_4_1=new Array("Summary","../eValid/Products/features.benefits.9.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu1_4_2=new Array("FAQs","../eValid/Products/Documentation.9/Help/faq.html","",0,25,100,"","","","","","",-1,-1,-1,"","");
      Menu1_4_3=new Array("FAQs (Mobile)","../eValid/Products/Documentation.9/Mobile/faqs.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
Menu2=new Array("Solutions","","",10,25,70,"","","","","","",-1,-1,-1,"center","");
   Menu2_1=new Array("Success Stories","../eValid/Promotion/SuccessStories/summary.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
   Menu2_2=new Array("Solution Finder","../eValid/solution.finder.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
   Menu2_3=new Array("Examples","../eValid/Products/Documentation.9/Solutions/summary.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
   Menu2_4=new Array("Timing/Tuning","","",2,25,0,"","","","","","",-1,-1,-1,"","");
      Menu2_4_1=new Array("Search Engine","../eValid/Promotion/SuccessStories/search.timing.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu2_4_2=new Array("Remote Performance","../eValid/Promotion/SuccessStories/remote.measure.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
   Menu2_5=new Array("Functional Testing","","",1,25,0,"","","","","","",-1,-1,-1,"","");
      Menu2_5_1=new Array("VPN Validation","../eValid/Promotion/SuccessStories/vpn.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
   Menu2_6=new Array("Monitoring","","",4,0,0,"","","","","","",-1,-1,-1,"","");
      Menu2_6_1=new Array("Production Monitoring","../eValid/Promotion/SuccessStories/production.monitoring.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu2_6_2=new Array("Three Tier Monitoring","../eValid/Promotion/SuccessStories/three-tier.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
      Menu2_6_3=new Array("Server Failures","../eValid/Promotion/SuccessStories/server.failure.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
      Menu2_6_4=new Array("Examples","../eValid/Promotion/PublicMonitors/summary.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
   Menu2_7=new Array("Server Loading","","",2,25,0,"","","","","","",-1,-1,-1,"","");
      Menu2_7_1=new Array("Medical Examination","../eValid/Promotion/SuccessStories/exam.system.loading.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu2_7_2=new Array("LoadRatios","../eValid/Technology/White.Papers/capacity.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
   Menu2_8=new Array("Site Analysis","","",2,25,0,"","","","","","",-1,-1,-1,"","");
      Menu2_8_1=new Array("Top 10 E-Tailers","../eValid/Promotion/Comparative/E-Tail/summary.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu2_8_2=new Array("Financial Times","../eValid/Promotion/SuccessStories/site.comparison.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
   Menu2_9=new Array("3D-SiteMap Visuals","","",2,0,139,"","","","","","",-1,-1,-1,"","");
      Menu2_9_1=new Array("Examples","../eValid/Promotion/3DSiteMaps/examples.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu2_9_2=new Array("Good / Bad","../eValid/Promotion/3DSiteMaps/good.bad.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
   Menu2_10=new Array("Website Comparisons","","",7,25,139,"","","","","","",-1,-1,-1,"","");
      Menu2_10_1=new Array("Analysis Summary","../eValid/Promotion/Comparative/Analysis/first.try.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu2_10_2=new Array("Top 10","../eValid/Promotion/Comparative/Fortune/Top10/summary.html","",0,25,100,"","","","","","",-1,-1,-1,"","");
      Menu2_10_3=new Array("Commercial Banks","../eValid/Promotion/Comparative/Fortune/Commercial.Banks/summary.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
      Menu2_10_4=new Array("Small Firms","../eValid/Promotion/Comparative/Fortune/Fastest.Small.Companies/summary.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
      Menu2_10_5=new Array("Hardware","../eValid/Promotion/Comparative/Fortune/Hardware/summary.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
      Menu2_10_6=new Array("Ski Areas","../eValid/Promotion/Comparative/Fortune/Ski.Areas/summary.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
      Menu2_10_7=new Array("Network Equipment","../eValid/Promotion/Comparative/Fortune/Network.Equipment/summary.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
Menu3=new Array("Services","","",3,25,70,"","","","","","",-1,1,-1,"center","");
   Menu3_1=new Array("Overview","../eValid/Services/description.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
   Menu3_2=new Array("Consulting","","",2,25,111,"","","","","","",-1,-1,-1,"","");
      Menu3_2_1=new Array("Performance Test","../eValid/Services/PerformanceTest/V9/synopsis.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu3_2_2=new Array("Comparative Analyses","../eValid/Promotion/Comparative/E-Tail/summary.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
   Menu3_3=new Array("Hosted Services","","",3,25,120,"","","","","","",-1,-1,-1,"","");
      Menu3_3_1=new Array("Application Monitoring","../eValid/Services/Monitoring/summary.html","",0,25,145,"","","","","","",-1,-1,-1,"","");
      Menu3_3_2=new Array("HealthCheck","../eValid/Promotion/HealthCheck/offer.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu3_3_3=new Array("eValidation","../eValid/Services/eValidation/promo.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
Menu4=new Array("Sales","","",7,0,70,"","","","","","",-1,-1,-1,"center","");
   Menu4_1=new Array("DOWNLOAD","../eValid/Products/Download.9/down.evalid.9.phtml?status=FORM","",0,25,139,"","","","","","",-1,-1,-1,"","");
   Menu4_2=new Array("Benefits","","",2,0,139,"","","","","","",-1,-1,-1,"","");
      Menu4_2_1=new Array("BenefitMatrix","../eValid/Products/features.benefits.9.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu4_2_2=new Array("Calculate ROI","../eValid/Solutions/roi.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
   Menu4_3=new Array("Licensing Options","../eValid/Products/Prices/guidance.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
   Menu4_4=new Array("Product Support","../eValid/Customers/product.support.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
   Menu4_5=new Array("Maintenance","../eValid/Products/maintenance.subscription.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
   Menu4_6=new Array("Technical Support","../eValid/Products/obtaining.support.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
   Menu4_7=new Array("License Types","../eValid/Products/License/index.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
Menu5=new Array("Company","","",4,25,70,"","","","","","",-1,-1,-1,"center","");
   Menu5_1=new Array("Mission","../eValid/mission.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
   Menu5_2=new Array("Customers","","",2,0,0,"","","","","","",-1,-1,-1,"","");
      Menu5_2_1=new Array("Client List","../eValid/Promotion/Customers/selected.sector.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu5_2_2=new Array("Customer Testimonials","../eValid/Products/kudos.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
   Menu5_3=new Array("Partners","","",4,25,0,"","","","","","",-1,-1,-1,"","");
      Menu5_3_1=new Array("Resellers","../eValid/Alliances/current.resellers.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu5_3_2=new Array("Affiliates","../eValid/Alliances/current.affiliates.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu5_3_3=new Array("Opportunity","../eValid/Alliances/opportunity.html","",0,25,0,"","","","","","",-1,-1,-1,"","");
      Menu5_3_4=new Array("Program Description","../eValid/Alliances/reseller.program.html","",0,25,0,"","","","","","",-1,-1,-1,"","");
   Menu5_4=new Array("Careers","../eValid/Careers/summary.html","",0,25,0,"","","","","","",-1,-1,-1,"","");
Menu6=new Array("Resources","","",5,25,70,"","","","","","",-1,-1,-1,"center","");
   Menu6_1=new Array("Movies","../eValid/Products/Documentation.9/Movies/inventory.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
   Menu6_2=new Array("Brochures","","",6,25,139,"","","","","","",-1,-1,-1,"","");
      Menu6_2_1=new Array("English","javascript:top.location.href=\'../eValid/description.pdf\';","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu6_2_2=new Array("German","javascript:top.location.href=\'../eValid/Alliances/Germany/eValidFlyer.pdf\';","",0,25,0,"","","","","","",-1,-1,-1,"","");
      Menu6_2_3=new Array("French","javascript:top.location.href=\'../eValid/Alliances/France/tessco-evalid.pdf\';","",0,25,0,"","","","","","",-1,-1,-1,"","");
      Menu6_2_4=new Array("Spanish","../eValid/Alliances/Spain/spanish-description.pdf","",0,25,0,"","","","","","",-1,-1,-1,"","");
      Menu6_2_5=new Array("Italian","../eValid/Alliances/Italy/italian-description.pdf","",0,25,0,"","","","","","",-1,-1,-1,"","");
      Menu6_2_6=new Array("Chinese","../eValid/Alliances/China/eValid_CHN.pdf","",0,25,0,"","","","","","",-1,-1,-1,"","");
   Menu6_3=new Array("Power User","","",2,25,139,"","","","","","",-1,-1,-1,"","");
      Menu6_3_1=new Array("Catalog","../eValid/Products/Tips/catalog.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu6_3_2=new Array("Tips & Tricks","../eValid/Products/Tips/index.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
   Menu6_4=new Array("Presentations","","",2,0,130,"","","","","","",-1,-1,-1,"","");
      Menu6_4_1=new Array("PowerPoint Tutorials","../eValid/Products/Training.9/index.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu6_4_2=new Array("AutoPlay Demos","javascript:top.location.href=\'../eValid/Products/Demos.9/playdemo.phtml\'","",0,25,100,"","","","","","",-1,-1,-1,"","");
   Menu6_5=new Array("Training & Education","","",2,25,100,"","","","","","",-1,-1,-1,"","");
      Menu6_5_1=new Array("Curriculum","../eValid/Training/curriculum.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu6_5_2=new Array("Sessions","../eValid/Training/current.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
Menu7=new Array("Technology","","",3,25,70,"","","","","","",-1,-1,-1,"center","");
   Menu7_1=new Array("White Papers","","",4,25,139,"","","","","","",-1,-1,-1,"","");
      Menu7_1_1=new Array("Quality","../eValid/Technology/White.Papers/quality.request.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu7_1_2=new Array("Site Analysis","../eValid/Technology/White.Papers/website.analysis.request.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
      Menu7_1_3=new Array("Testing","../eValid/Technology/White.Papers/testing.request.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
      Menu7_1_4=new Array("Loading","../eValid/Technology/White.Papers/loading.request.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
   Menu7_2=new Array("General","","",4,25,120,"","","","","","",-1,-1,-1,"","");
      Menu7_2_1=new Array("Why Browser?","../eValid/Technology/why.browser.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu7_2_2=new Array("Diagram","../eValid/Technology/General/diagram.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
      Menu7_2_3=new Array("Tech Comparisons","../eValid/Promotion/Comparisons/capability.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
      Menu7_2_4=new Array("Terminology","../eValid/Products/Documentation.9/Technical/terminology.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
   Menu7_3=new Array("Backup Details","","",4,25,120,"","","","","","",-1,-1,-1,"","");
      Menu7_3_1=new Array("Enabling","../eValid/Promotion/Positioning/enabling.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu7_3_2=new Array("Advantages","../eValid/Promotion/Comparisons/advantages.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
      Menu7_3_3=new Array("100% Guarantee","../eValid/Promotion/guarantee.html","",0,0,0,"","","","","","",-1,-1,-1,"","");
      Menu7_3_4=new Array("Technology Levels","../eValid/Promotion/Comparisons/levels.html","",0,25,100,"","","","","","",-1,-1,-1,"","");
Menu8=new Array("Press","","",4,25,70,"","","","","","",-1,-1,-1,"center","");
   Menu8_1=new Array("Blog","javascript:NewWin=window.open('../eValid/Promotion/ClickThrough/Blogspot/blog.html','NWin');window['NewWin'].focous","",0,25,139,"","","","","","",-1,-1,-1,"","");
   Menu8_2=new Array("Press Releases","","",10,25,160,"","","","","","",-1,-1,-1,"","");
      Menu8_2_1=new Array("Cloud-Based AJAX Perf.","../eValid/Promotion/PressReleases/PR.18Jun10.html","",0,25,160,"","","","","","",-1,-1,-1,"","");
      Menu8_2_2=new Array("Testing AJAX Applications","../eValid/Promotion/PressReleases/PR.webinar.15Mar10.html","",0,25,160,"","","","","","",-1,-1,-1,"","");
      Menu8_2_3=new Array("Web Application Testing","../eValid/Promotion/PressReleases/PR.webinar.24Feb10.html","",0,25,160,"","","","","","",-1,-1,-1,"","");
      Menu8_2_4=new Array("Testing AJAX/Web2.0","../eValid/Promotion/PressReleases/PR.webinar.27Jan10.html","",0,25,160,"","","","","","",-1,-1,-1,"","");
      Menu8_2_5=new Array("Architecture & Applications","../eValid/Promotion/PressReleases/PR.webinar.10Dec09.html","",0,25,160,"","","","","","",-1,-1,-1,"","");
      Menu8_2_6=new Array("V9 Release","../eValid/Promotion/PressReleases/PR.eValid.V9.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu8_2_7=new Array("Regular Expressions","../eValid/Promotion/PressReleases/PR.eValid.RegEx.Jul08.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu8_2_8=new Array("DOM Analysis","../eValid/Promotion/PressReleases/PR.eValid.DOM.Jun08.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu8_2_9=new Array("AJAX Release","../eValid/Promotion/PressReleases/PR.eValid.AJAX.May08.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu8_2_10=new Array("EPI Release","../eValid/Promotion/PressReleases/PR.eValid.EPI.Jan08.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
   Menu8_3=new Array("Reviews","","",5,25,100,"","","","","","",-1,-1,-1,"","");
      Menu8_3_1=new Array("USC - Using eValid","./Products/Reviews/USC.html","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu8_3_2=new Array("Methods & Tools (PDF)","javascript:NewWin=window.open('http://www.soft.com/eValid/Promotion/Reviews/evalid-reviews-2010.pdf','NWin','');window['NewWin'].focous","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu8_3_3=new Array("Hildebrando","javascript:NewWin=window.open('http://e-valid.blogspot.com/2008/05/evalid-product-review-spanish.html','NWin','');window['NewWin'].focous","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu8_3_4=new Array("CTLabs Review (PDF)","../eValid/Promotion/Articles/CTLabs/Review.2003.pdf","",0,25,139,"","","","","","",-1,-1,-1,"","");
      Menu8_3_5=new Array("STQE Article","../eValid/Promotion/Articles/stqe.jul01/index.html","",0,25,100,"","","","","","",-1,-1,-1,"","");
   Menu8_4=new Array("Endorsements","","",3,25,139,"","","","","","",-1,-1,-1,"","");
      Menu8_4_1=new Array("Jolt Award","javascript:NewWin=window.open('../eValid/Products/kudos/jolt.award.html','NWin','WIDTH=500,HEIGHT=750,dependent=yes,scrollbars=yes');window['NewWin'].focous","",0,25,100,"","","","","","",-1,-1,-1,"","");
      Menu8_4_2=new Array("CTLabs","javascript:NewWin=window.open('../eValid/Products/kudos/ctlabs.html','NWin','WIDTH=425,HEIGHT=650,dependent=yes,scrollbars=yes');window['NewWin'].focous","",0,25,100,"","","","","","",-1,-1,-1,"","");
      Menu8_4_3=new Array("Besson","javascript:NewWin=window.open('../eValid/Products/kudos/besson.html','NWin','WIDTH=425,HEIGHT=650,dependent=yes,scrollbars=yes');window['NewWin'].focous","",0,0,0,"","","","","","",-1,-1,-1,"","");

