
function spaceToHyphen( objName )
{
  var obj = document.getElementById(objName);
  obj.value = obj.value.replace(/\s/g,'-');
}
