Если вы хотите добавить свойство ina свойства String, функция onclick получает строку и добавляет эту строку в свойство password.
function getCharText(text){
if(capsEnable == 1)
text = text.toUpperCase();
var textString= "";
var textValue = document.forms[0].password.value;
if(textValue != '')
textString = textValue;
if(document.forms[0].enableKeyboard.checked == true){
if(text == "bs" || text == "BS")
textString = textString.substring(0, textString.length-1);
else if(text == "ca" || text == "CA")
textString = "";
else if(text == "sl" || text == "SL")
textString = textString + "\\";
else if(text == "dq" || text == "DQ")
textString = textString + "\"";
else if(text == "sq" || text == "SQ")
textString = textString + "\'";
else
textString = textString + text ;
}
var pwd = document.forms[0].password.value;
var pwdlen = pwd.length;
if(pwdlen<15)
{
document.forms[0].password.value = textString;
}
}
Попробуйте это и дайте нам знать результат ...