// JavaScript Document
function message(arg1, arg2, arg3)
{
  try
  {
    location.href='mailto:' + arg1 + '@' + arg2 + '?subject=' + arg3;
  }
  catch (e) {}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}