function removeAttributes(){
removeAttribute(document.getElementsByTagName("IMG"));
removeAttribute(document.getElementsByTagName("A"  ));
}

function removeAttribute(elements){
for(i=0;i<elements.length;i++){
elements[i].removeAttribute("title");
elements[i].removeAttribute("alt");
}
}
