// JavaScript Document

	function browserPrintAlert() {
	alert("We're sorry, your browser does not support this feature.  If you wish to print this page, please use the print button on your browser.") 
	}
	function checkBrowserPrintFunction() {
	//check browsers for mac ie
		if (window.print) {
		document.write('<A href="javascript:window.print();"><IMG height=11 alt="Print this page" src="//a248.e.akamai.net/f/248/5462/2h/www.symantecstore.com/v2.0-img/images/symant73/met/5a_print.en-us.gif" width=111 border=0></A>');
		} else {
		document.write('<A href="javascript:browserPrintAlert();"><IMG height=11 alt="Print this page" src="//a248.e.akamai.net/f/248/5462/2h/www.symantecstore.com/v2.0-img/images/symant73/met/5a_print.en-us.gif" width=111 border=0></A>');
		}
		
	}
