<!--

// function to email page details to user
function emailpage()
{
  mail_str = "mailto:?subject= National Joint Registry: " + document.title;
  mail_str += "&body= I recommend the following page on the National Joint Registry's website " + document.title;
  mail_str += ". You can view it here: " + location.href; 
  location.href = mail_str;
}


//-->

// function to print the page
function printPage() {
    window.print();
}


window.onload = function() {
    document.getElementById('link_print_page').onclick = new Function('printPage(); return false;');
}

//-->
