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