function winSizer(){
	windowWidth = window.screen.availWidth;
	windowHeight = window.screen.availHeight;
	window.moveTo(0,0);
	window.resizeTo(windowWidth,windowHeight);
}
function OpenComments (c) {
    window.open(c,
                    'comments',
                    'width=550,height=550,scrollbars=yes,status=yes,left=0,top=0');
}
function OpenTrackback (c) {
    window.open(c,'trackback','width=550,height=550,scrollbars=yes,status=yes,left=0,top=0');
}
var head="display:''"
function change(){
if(!document.all)
return
if (event.srcElement.id=="foldheader") {
var srcIndex = event.srcElement.sourceIndex
var nested = document.all[srcIndex+1]
if (nested.style.display=="none") {
nested.style.display=''
}
else {
nested.style.display="none"
}
}
}
document.onclick=change