var emailarray2082 = new Array(112,111,115,116,64,100,111,114,116,104,101,115,45,104,111,98,98,121,115,116,117,101,46,100,107);

function emailDecrypter(email) {
  var postemail2082 = '';
  for(i = 0; i < email.length; i++) {
    postemail2082 += String.fromCharCode(email[i]);
  }
  return postemail2082;
}

function linkToEmail(email, text, className) {
  var decryptedEmail = emailDecrypter(email);
  var link;
  link = '<a href="mailto:'+decryptedEmail+'"';
  if(className) {
    link += ' class="'+className+'"';
  }
  link += '>';
  if(text) {
    link += text;
  } else {
    link += decryptedEmail;
  }
  link += '</a>';
  return link;
}

function popupWindow(url) {
  var popwin = window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150');
  popwin.focus();
  return false;
}
