function changeLink(includes,newHREF) {
var a=document.getElementsByTagName('a');
for (i=0;i<a.length;i++) {
if (a[i].getAttribute('href').indexOf(includes)!=-1) a[i].setAttribute('href',newHREF);
}
}
