// romain 2009/06
// onkeyup="allcaps(this)" 

function allcaps(oThis) {
	oThis.value = oThis.value.toUpperCase();
}