
function PrintPage() 
{
	if (window.print)
		window.print();
	else
		alert("Sorry, your browser doesn't support this feature.");
}
function EmailPage()
{
	var loc, bdy;
	loc = escape(eval(window.location)).replace(/\+/g, '%2B').replace(/\"/g,'%22').replace(/\'/g, '%27');
	bdy = "One of your friends thought that you might be interested in this.";
	bdy += " You can view it at, " + loc;
	window.location = "mailto:?subject=:: HariAum.com :: &body=" + bdy;
}
