﻿ 

function getUrlMail()
 {
 window.open('sendmail.aspx?document='+document.location,'_blank');
}
$(document).ready(function() {

 $("a[href^=http]").not("#topservices a").each(function(){
      if(this.href.indexOf(location.hostname) == -1) {
         $(this).attr({
            target: "_blank",
            title: "Opens in a new window"
         });
      }
   })

});

