function viewComments(c) { var s="http://www.dannychai.com/blog/cmnts.php?id=" + c; window.open(s,c+"Comments","width=550,height=600,status,scrollbars,resizable=yes"); } function toggleSide(a,b,c) { var h=document.getElementById(a); var ad=document.getElementById(b); var o=ad.firstChild; if (c=="hide") { h.style.display="none"; ad.onclick=function() { toggleSide(a,b,"show"); return false; }; var n=document.createTextNode("[show]"); } else { h.style.display="block"; ad.onclick=function() { toggleSide(a,b,"hide"); return false; }; var n=document.createTextNode("[hide]"); } ad.replaceChild(n, o); } function GoToDate() { location.href='/blog/index2.php?date=' + document.getElementById('fbdyear').value + document.getElementById('fbdmon').value + document.getElementById('fbdday').value; }
