﻿function addTorgetInfo(txt)
{
    var txtBox = document.getElementById('ctl00_mainContent_txtIntresseMeddelande');

    if (txtBox != null)
    {
        txtBox.value = txt + "\r\n";
    }
}
