function mailTo()
{
  if (document.getElementById != null)
  {
    var obj = document.getElementById('printFriendly');
    if (obj != null)
    {
      var content = "";
      if (document.getElementsByTagName != null)
      {
        var obj_head = document.getElementsByTagName('head');
        if (obj_head != null)
        {
          content += obj_head[0].innerHTML;
        }
      }
      content += "\n<body style='background-color: #fff;'><table cellpadding='8' cellspacing='0' border='0' width='100%'><tr><td>" + obj.innerHTML + "</td></tr></table>";
      content += "</body>";

	document.forms['frmMailTo'].hdnContent.value = content;

      var newWin = window.open("/en/MailTo.aspx", "MailTo", "width=600,height=500,status=no,menubar=no,location=no,resizable=no");                    
    }
  }
  else
  {
    alert("You're browser is not capable of performing this operation!");
  }
}