Bueno veo q nadie me puede ayudar 

, entontre este codigo q lo hace...  
 Código HTML:
 <html>
<head>
<title>Letra inicial en mayúscula</title>
</head>
<BODY style="font-family: Verdana">
<p align="center"><b>Letra inicial en mayúscula</b></center><p>
<SCRIPT LANGUAGE="JavaScript">
<!-- Original:  William Humphreys ([email protected]) -->
<!-- Begin
function changeCase(frmObj) {
var index;
var tmpStr;
var tmpChar;
var preString;
var postString;
var strlen;
tmpStr = frmObj.value.toLowerCase();
strLen = tmpStr.length;
if (strLen > 0)  {
for (index = 0; index < strLen; index++)  {
if (index == 0)  {
tmpChar = tmpStr.substring(0,1).toUpperCase();
postString = tmpStr.substring(1,strLen);
tmpStr = tmpChar + postString;
}
else {
tmpChar = tmpStr.substring(index, index+1);
if (tmpChar == " " && index < (strLen-1))  {
tmpChar = tmpStr.substring(index+1, index+2).toUpperCase();
preString = tmpStr.substring(0, index+1);
postString = tmpStr.substring(index+2,strLen);
tmpStr = preString + tmpChar + postString;
         }
      }
   }
}
frmObj.value = tmpStr;
}
//  End -->
</script>
</HEAD>
<BODY style="font-family: Verdana">
<center>
<form name=form>
<input type=text name=box size="20"> <br>
<input type=button value="Inicial en mayúsculas" onClick="javascript:changeCase(this.form.box)">
</form>
</center>
</body>
</html>  BUeno lo cambia pero apretando un boton..... ahora lo que quisiera es q lo cambie cuando mi cursor ya no este en la caja de texto....!!!!
Como se hace???? ayuda porfavor!!!!