<!-- 

function initArray(){
 this.length=initArray.arguments.length;
 for (var i=0;i<this.length;i++){
  this[i]=initArray.arguments[i];
 }
}

function SendEmail(encrypted) {
  var address=""
  var pos
  var bytes
  var key = "$*$)#2^#()%^$+#*%|4)|@{|3)%&)@|^!_^+%~_+*^())_$#^*"
  var byteOrder=new initArray(3,12,5,41,34,16,40,2,18,24,13,38,8,36,23,50,45,15,1,31,46,37,11,47,25,39,35,48,4,49,44,7,28,27,32,20,10,43,26,17,29,33,9,19,6,21,14,42,22,30);
  var byteFinal=new initArray("","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","");
  var idx
  var y=0

  bytes = encrypted.length / 3;
  for (var i=1;i<=50;i++){
    pos = byteOrder[i-1];
    if ((pos <= bytes) && (y < bytes)) {      
       y += 1; idx = ((y-1)*3);
       byteFinal[pos-1] = String.fromCharCode(encrypted.substring(idx,idx+3)-key.charCodeAt(pos-1));
    }
  }
  for (var z=1;z<=bytes;z++){address += byteFinal[z-1];} 
  location.href = "mailto:"+address;
}

function WinOpen(mywindow, mylines, mytitle, mymsg) {
  msg=window.open("",mywindow,"height="+(mylines*40)+",width=600,status=no,toolbar=no,directories=no,menubar=no,location=no,scrollbars=yes");
  msg.document.write("<HTML><TITLE>" + mytitle + "</TITLE>");
  msg.document.write("<BODY>"+mymsg+"</BODY></HTML>");
}

function LinkUp() {
  var number = document.dropdown.years.selectedIndex;
  var option = document.dropdown.years.options[number].value;
  window.location = option
}

//-->
