
function emailPath(){
	if(location.href.indexOf("admin") == -1){
		//if NOT on admin site
		self.location.href = "mailto:?subject=intranet link&body=" + encodeURIComponent(location.href);
	}else{
		alert('This feature is not available in the administration area!');
	}
}