
	var babelTF="TF";
	
	 var myBabelOrigUrl 
	 try {
    myBabelOrigUrl = babelOrigUrl;
	  } catch (e) {
	    babelOrigUrl = document.location;
	  }
	  
	function hideMenuItems() {
 	hiddenMenu = document.getElementById('hideBabel');
 	if (hiddenMenu != null) {
      if (document.location.href.match('babel') != null) {
 	        hiddenMenu.style.display = "none";
 	    }
 	}
	}
	  
	function redirectToHome()	{
	    document.location=babelOrigUrl;
	}
	
	function redirectToBabel(code) {
	      if ( code == 'home') {
	        redirectToHome();
	        return;
	      }
	    
	    		if ( code != "none" && confirm("This is a machine translation provided by www.altavista.com\n\nYou are now leaving the BizTas web site. BizTas is not responsible for any aspect of the translation you are about to see including service availability or accuracy.\n\nMachine translation is by no means perfect but may be good enough to give you a general sense of the original. If in doubt refer to the original English text and maintain a sense of humour.") ) {
         document.location= 'http://babelfish.altavista.com/babelfish/urltrurl?lp=en_' + code + '&url=' + babelOrigUrl;
		     }
}
