//navbar_eng.js
var navURLs  = new Array('http://www.josytal.com','http://www.josytal.com/ccount12/click.php?id=19','http://www.josytal.com/ccount12/click.php?id=19','http://www.josytal.com/services.html','http://www.josytal.com/services.html','http://www.josytal.com/services.html','http://www.josytal.com/awards.html','http://www.josytal.com/affiliates.html','http://www.josytal.com/terms.html','http://www.josytal.com/privacy.html','http://www.josytal.com/techspt.html','http://www.josytal.com/faq.html','http://www.josytal.com/links/links.php','http://www.josytal.com/support.php');

var linkText = new Array('Home','Products','How to order','Services','Re-branding','OEM','Awards','Affiliates','Terms of use','Privacy Policy','Technical Support/SLA','FAQ','Link Exchange','Contact Us');
function navbar() {
	var navStr= '';
	for (var i = 0; i < navURLs.length; i++) {
		//	if (location.href != navURLs[i]) {		    	   Uncomment this line and comment 
		if (location.href.indexOf(navURLs[i]) == -1) {	// this one when not browsing locally
			navStr += ' [<A HREF="' + navURLs[i] + '">' + linkText[i] + '</A>] '; 
			}
		}
	document.writeln('' + navStr);
	}