// JavaScript Document
// JavaScript Document

 //Opens print window with printable version
function openPrintWindow(fileName,headline) {
  window.open(fileName+"?headline="+headline,'','scrollbars=yes,resizable=yes,width=870,height=550,toolbar=yes,menubar=yes');
}

//Sends an email to article
function openEmailWindow(fileName,headline) {
  window.open("/news/email_article.asp?article=news%2Fcustomer%2F2007%2E3%2F"+fileName+"&newsletter_type=customer&headline="+headline,'','scrollbars=yes,resizable=no,width=440,height=500,toolbar=yes,menubar=yes');
 }
