function newslink(id){
  var str = id;
  if (str.match("http://")){
    window.open(id);
  }
  else{
    window.open("http://"+id);
  }
}

function textlink(id){
  var str = id;
  if (str.match("http://")){
    window.open(id);
  }
  else{
    window.open("http://"+id);
  }
}