function addAutocomplete() {
var theTags = document.getElementsByTagName('*');
var result = '';
	for(i=0;i < theTags.length;i++) {
	   if(theTags[i].id) {
	   result += theTags[i].id.toString()+'\n';
	   theTags[i].setAttribute('autocomplete', 'off');
	   }
	}
}
