function makeQuote(givenId)
{
    
    oldComment='@'+document.getElementById('author_'+givenId).innerHTML+', ';
    oldComment+=document.getElementById('date_'+givenId).innerHTML+': ';
    oldComment+=document.getElementById('show_'+givenId).innerHTML;
    

    oldComment=oldComment.toLowerCase();//for ie

    if(navigator.appName=='Microsoft Internet Explorer')
    {
        oldComment=oldComment.replace(/<div class=comment-quote>[\s\S]*<\/div>/g,"");
        oldComment=oldComment.replace(/<br class=cb>/g,"");
    }
    else
    {
        oldComment=oldComment.replace(/<div class="comment-quote">[\s\S]*<\/div>/g,"");
        oldComment=oldComment.replace(/<br class="cb">/g,"");
    }

    document.getElementById('artAddCmnt').value='[CITAT]'+oldComment+'[/CITAT]\n'
}
