	function ShowEmailToFriendBlogLink(){
                        var linktext = "";

                        var pagetitle = "";
                        if ($('h2').size() == 1){
                            pagetitle = $("#content h2 a").html();                                        
                        }
                        
                        var subject = "MarkMonitor.com Blog: "+pagetitle;
                        var subhead = "";
                        var pagelink = document.URL;
                        var footer = "More than half of the Fortune 100 trust MarkMonitor to protect their brands online.%0Ahttp://www.markmonitor.com/";
                        
                        var showlink     = "";
                        showlink         += ""+
                            "<a href=\"mailto:enter email address?"+
                            "subject="+subject+
                            "&body="+pagetitle+"%0A";
                        
                        if (subhead != null){
                            showlink         += subhead+"%0A";
                        }
                        
                        showlink         += pagelink+"%0A%0a"+    
                            footer+            
                            "\">"+linktext+"</a>";        
                        
                        //alert(showlink);
                        document.write(showlink);        
                    }