function mok3_emailCurrentLocation()
{
	var query = window.location.search.replace( '?', '' );
	var hash = window.location.hash.replace( '#', '?' );
	if ( query != null && query.length > 0 )
	  hash += ((hash!=null && hash.length>0) ? '&' : '' )+ query;
	
	var newHref = window.location.protocol + '//' +
		window.location.host + window.location.pathname +
		hash;
	
	var body =
	"Click on the link below to experience SuperTour.\n\n" +
	newHref + "\n\n" +
	"Experiencing SuperTour for the first time?  Please visit www.supertour.com for more information.";
	
  emailLink = "mailto:?subject=SuperTour.com Tour Link&body=" + escape(body);
  window.location.href = emailLink;
}

// Use this function from HTML
function mok3_emailLink()
{
  mok3_stats("evt_email?from=header");
  mok3_emailCurrentLocation();
}
