<!--
// Library: inzenity.js
// 		contains common code used for the entire domain
//

// google analystics id
var _uacct = 'UA-1732890-1';

function jumble(usr, dom, sfx, txt)
{
   if ( txt == '' ) 
   {
       txt = usr + '@' + dom + '.' + sfx;
   }
   //alert(txt);
   document.write('<a href="' + 'mailto:' + usr + '@' + dom + '.' + sfx + '">' + txt + '</a>');
}

function thisYear()
{
    var today = new Date();
    document.write( today.getFullYear() );
    //GoogleAnalytics();
}

function Year()
{
    var today = new Date();
    document.write( today.getFullYear() );
    //GoogleAnalytics();
}
/* 
Summary: includes external scripts in this external script 
         so that you don't have to reference them within the (x)html 
document 
         files. 
Remarks: 
         In effect this inserts something like 
          <script type="text/javascript" 
src="referencingExternalLibrariesB.js"></script> 
         into the html document. 
Param: 
         scriptUrl (String) 
            an absolute or relative url. 
Usage:   In your external scripts, at the top of your documents, 
         include("file:///C:/temp/myScript.js"); 
         include("otherScript"); 
         */ 
function include(scriptSrc) { 
   var headElement = document.getElementsByTagName('head')[0]; 
   var scriptElement = document.createElement('script'); 
   scriptElement.setAttribute('type', 'text/javascript'); 
   scriptElement.setAttribute('src', scriptSrc); 
   headElement.appendChild(scriptElement); 



} 

function GoogleAnalytics()
{
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
}

// -->
