<!--

function primal(appo)
{

while  (appo.indexOf(" ") == 0)  {appo = appo.substr(1) };

while  (appo.indexOf("  ") > 0)  {appo = appo.replace(/  /i," ") };

if (appo.substr(appo.substr.length-1) == " ") {appo = appo.substr(0,appo.length-1) };

return appo.substr(0,1,1).toUpperCase() + appo.substr(1)

}


//-->



