// Upper case only
function upper(ustr)
{
    var str=ustr.value;
    ustr.value=str.toUpperCase();
}


