
function right(e) {
if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)) {
return false;
}
else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button
== 2 || event.button == 3)) {
alert("This website and it's contents are owned and licensed by Health Source Group, Inc. and All contents are copyrighted and not available for download or use on any other site.\n\n *ALL RIGHTS RESERVED* © 2006. Health Source Group, Inc.");
return false;
}
return true;
}

document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;


 function PrintThisPage()
  {
     var sOption="toolbar=yes,location=no,directories=yes,menubar=yes,";
         sOption+="scrollbars=yes,width=750,height=600,left=100,top=25";
 
     var sWinHTML = document.getElementById('contentstart').innerHTML;
    
     var winprint=window.open("","",sOption);
         winprint.document.open();
         winprint.document.write('<html><LINK href=/resources/newsletter/lib/webwire-style.css rel=Stylesheet><body>');
         winprint.document.write(sWinHTML);         
         winprint.document.write('</body></html>');
         winprint.document.close();
         winprint.focus();
  }
  //-->
 

 
