window.onload = function() {
	var  l = new Array;
	l = document.getElementsByTagName('input');
	for(var i = 0; i < l.length; i++) {
		if(l[i].type == 'text') {
			l[i].setAttribute('autocomplete', 'off');
		};
	};
};
