//document.onload = function() { document.getElementById('commentsfor1').style.display = 'none'; }
document.write("<div id='overlay'>");
document.write("<div>");
document.write("<p></p>");
document.write("</div>");
document.write("</div>");


function toggle(link, divid) {
    var div = document.getElementById(divid);
    if (div.style.display == 'none') {
        Effect.BlindDown(div);
    } else {
        Effect.BlindUp(div);
    }
}

function toggle_comment(link,divid) {
    var div = document.getElementById(divid);
    if (div.style.display == 'none') {
        Effect.BlindDown(div, {afterFinish: function(element) { document.forms['form_'+divid]['comment[text]'].focus(); }});
    } else {
        Effect.BlindUp(div);
    }
}

function overlay() {
	el = document.getElementById("overlay");
	el.style.visibility = (el.style.visibility == "visible") ? "hidden" : "visible";
}
    


