<br />
<b>Deprecated</b>:  Assigning the return value of new by reference is deprecated in <b>/home/poofy/www/p3y_de/htdocs/blog/include/plugin_api.inc.php</b> on line <b>560</b><br />
<br />
<b>Deprecated</b>:  Assigning the return value of new by reference is deprecated in <b>/home/poofy/www/p3y_de/htdocs/blog/plugins/serendipity_event_spamblock/serendipity_event_spamblock.php</b> on line <b>464</b><br />
<br />
<b>Deprecated</b>:  Assigning the return value of new by reference is deprecated in <b>/home/poofy/www/p3y_de/htdocs/blog/plugins/serendipity_event_spamblock/serendipity_event_spamblock.php</b> on line <b>489</b><br />
<br />
<b>Deprecated</b>:  Assigning the return value of new by reference is deprecated in <b>/home/poofy/www/p3y_de/htdocs/blog/plugins/serendipity_event_spamblock/serendipity_event_spamblock.php</b> on line <b>533</b><br />
<br />
<b>Deprecated</b>:  Assigning the return value of new by reference is deprecated in <b>/home/poofy/www/p3y_de/htdocs/blog/plugins/serendipity_event_spamblock/serendipity_event_spamblock.php</b> on line <b>870</b><br />
<br />
<b>Deprecated</b>:  Assigning the return value of new by reference is deprecated in <b>/home/poofy/www/p3y_de/htdocs/blog/plugins/serendipity_event_spartacus/serendipity_event_spartacus.php</b> on line <b>332</b><br />
<br />
<b>Deprecated</b>:  Assigning the return value of new by reference is deprecated in <b>/home/poofy/www/p3y_de/htdocs/blog/plugins/serendipity_event_spartacus/serendipity_event_spartacus.php</b> on line <b>376</b><br />
function hide_unhide(thing, path, lines, icons, bottom){
    nav=document.getElementById(thing).style
    if (lines) {
        if (bottom) {
            plus = path + '/img/plus.gif';
            minus= path + '/img/minus.gif';
         } else {
            plus = path + '/img/plusbottom.gif';
            minus= path + '/img/minusbottom.gif';
         }
    }else{
        plus = path + '/img/nolines_plus.gif';
        minus= path + '/img/nolines_minus.gif';        
    }
    if(nav.display=="none"){
        document.getElementById(thing+'_image').src=minus;
        nav.display='block';
        if (icons) {
            document.getElementById(thing+'_folder').src=path +'/img/folderopen.gif';
        }
    }else{
        document.getElementById(thing+'_image').src=plus;
        nav.display='none';
        if (icons) {
            document.getElementById(thing+'_folder').src=path +'/img/folder.gif';
        }
    }
}
