  function makeDesc(inputRef)
  {  	
  	desc = getLastInput(inputRef);
    var newDesc = "";
	
   // Break the list into keywords
    aKey = desc.split(String.fromCharCode(13));

     for(i in aKey) 
     {
     	newDesc += aKey[i]+'\<BR\>';
	 }
     
     return newDesc;
  }

 function getLastInput(inputRef)
  {
    if (inputRef.length == null)
    { return inputRef.value; }
    else
    { 
      var curIdx = inputRef.length - 1;
      return inputRef[curIdx].value;
    }
  }

