function doPrint() {
	window.print();
}

function doBookmark() {
	// works in IE
	if(document.all) {
		window.external.AddFavorite(location.href,document.title);
	}
	// so give a helpful message otherwise
	else {
		alert("Press CTRL +D to bookmark this page");
	}
}

function doEmail() {
	window.location.href='mailto:?subject=Knauf Drywall page that may interest you&body='+window.location.href;
}
