// Viral and Social Tools 
// By: Laura Childs
// http://www.socialmarketingstrategy.com
// Version: 1.0

ns4 = document.layers;
ie = document.all;
moz = document.getElementById && !document.all;
	 
function Bookmark(docUrl, docTitle) {
	if(document.all) 
	{
		window.external.AddFavorite(docUrl, docTitle);
	}
	else
	{
		alert ("I'm sorry.  Your browser doesn't support automatic bookmarking.\n  You have to manually bookmark this page.");
	}
}

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