<!-- hide from none JavaScript Browsers
// New Item Encoder
function checknew(date) {
var pic = "images/new.gif";
var bor="border0";
var alta="New-Addition";
var tita="New-Addition";
expdate = new Date(date);
curdate = new Date();
if (expdate.getTime() > curdate.getTime())
document.write("<img width=19 height=10 src="+pic +" class="+bor+" alt="+alta+" title="+tita+"> ");
}

// JavaScript Document: Email Encoder
function sendAnnotatedMailTo(name,company,domain,subject)
{
locationstring='mai'+'lto:'+name + '@' + company + '.' + domain + "?subject=" + escape(subject);
window.location.replace(locationstring); 
}

// Menu Encoder
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
// Stop Hiding -->