// JavaScript Document
<!--POP UP full screen
function popup(url) 
{
 params  = 'width=800';
 params += ', height='+((screen.height)-50);
 params += ', top=10;, left='+(((screen.width)/2)-400);
 params += ', fullscreen=no';
 params += ', location=no';
 params += ', status=no';
 params += ', scrollbars=yes';

 newwin=window.open(url,'windowname4', params);
 if (window.focus) {newwin.focus()}
 return false;
}
// -->

<!--OTKRIVANJE DIV-a
function togglecomments (postid) {
var whichpost = document.getElementById(postid);
if (whichpost.className=="commentshown") { whichpost.className="commenthidden"; } else { whichpost.className="commentshown"; }
} 
// -->
