// Printer friendly function for HealthScout
// HSc uses only one printer-friendly template but cobrands' pf link has the cobrand # embedded.
// This function will replace the cobrand # with the main # (1)
function openPrinterFriendlyPage_HS(){
	var pfUrl = location.href.replace(/(.*)[_][2-9]*\.html.*/, '$1');
	pfUrl = pfUrl.replace(/http:\/\/([^\/]+)\/([^\/]+)\/[0-9]+\/(.*)/, 'http://$1/$2/1/$3'); 
	pfUrl = pfUrl.replace(/(.*).html.*/, '$1')+'_pf.html';
	window.open(pfUrl);
}

