﻿/****************************************************************************************
 * Name:        StringHelper.js
 * Developer:   Juri
 * Date:        01-03-2007
 * Description: String manipulatie
 * Changes:
 * 
 * *************************************************************************************/

function UpperCase
(
id
)
{
  var textValue;

  if (document.getElementById)
  {
    textValue = document.getElementById(id).value;
    document.getElementById(id).value = textValue.toUpperCase();
  }
}
