/*
  --- menu items --- 
  note that this structure has changed its format since previous version.
  additional third parameter is added for item scope settings.
  Now this structure is compatible with Tigra Menu GOLD.
  Format description can be found in product documentation.
*/

var USAorderURL = "javascript:orderPopUp('http://www.automationmart.com/index.php?currency=USD');"
var CAorderURL = "javascript:orderPopUp('http://www.automationmart.com/index.php?currency=CAD');"


//var USAorderURL = "javascript:orderPopUp('http://shoppingcart.tri-plc.com/index.php?currency=USD');"
//var USAorderURL = "http://www.tri-plc.com/usaorder/orderchoice.htm";

var MENU_ITEMS = [
	['Download', , ,
		['Ladder+BASIC Software ',,null,
               ['Internet TRiLOGI', 'trilogi.htm'],
   		   ['Browser Version', 'trilogi3.htm'],
  		   ['DOS Version', 'trilogi2.htm'],
		   ['Chinese TRiLOGI', 'http://www.tri-plc.cn'],
            ],
            ['Documentations (PDF)', 'documentlist.htm'],
	],

	['Applications', 'applications.htm', null,
 	    ['Application Notes','appnotes/AppnoteMain.htm'],
		['M-series Photos', 'applications/m-plc2.htm'],
		['H-series Photos', 'applications/h-plc2.htm'],
		['Users\' Projects', 'applications/userapp.htm'],
	],
	['Contact Us', null, null,
	    ['Contact Info.', 'contact.htm'],
		['Technical Inquiries','techinq.htm'],
		['Get OEM Price List', 'rfqform.htm'],
		['About TRi', 'abouttri.htm'],
		['What Our Users Say', 'testimonial.htm',null,
            ["Users\' Opinions", 'testimonial.htm'],
     		['Expert Review', 'ccireview.htm'],
 
          ],
	],
	['Forum / FAQ', null, null, 
	    ['Forum', 'yabbse/index.php',null,
	        ['FAQ Board', 'yabbse/index.php?board=2'],
     	        ['Technical Support Board', 'yabbse/index.php?board=1'],
	        ['Search Forum', 'yabbse/index.php?action=search'],
	    ],    
	    ['Other FAQs','faqmain.htm'],
	],
	
	['How to Order', null, null,
		['United States', USAorderURL ,null],
                ['Canada', null, null,
                   ['Alberta (AB)','http://www.yourdci.com/home.php',null],
                   ['All other provinces',CAorderURL,null],
                ],
		['Other Countries',"javascript:orderPopUp('intlorder/order.htm');",null],
		['International Distributors','distlist.htm'],
	],
	['Soln. Partners',"javascript:orderPopUp('RSP/index.htm');",null],		        
        ['About TRi Inc', null, null,
            ['Company Background','abouttri.htm',null],
		['Flash Video of TRi Products', "javascript:orderPopUp('companyintro.htm');", null],
        ],
];

function orderPopUp(URL) {
  id = "OrderWindow";
  eval(id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=1000,height=800');");
  OrderWindow.focus();
}



