// JavaScript Document

 
function poptoggle(postid,liid) {
var whichpost = document.getElementById(postid);
var lipost = document.getElementById(liid);
 
if (whichpost.className=="expandblock"){
whichpost.className="collapseblock";
lipost.className="LICollapse";
}
else {
whichpost.className="expandblock";
lipost.className="LIExpand";
}
} 
 
 function popNewsToggle(postid,liid) {
var whichpost = document.getElementById(postid);
var lipost = document.getElementById(liid);
 
if (whichpost.className=="NewsExpandblock"){
whichpost.className="NewsCollapseblock";
lipost.className="LINewsExpand";
}
else {
whichpost.className="NewsExpandblock";
lipost.className="LINewsCollapse";
}
} 
 