window.addEvent('domready', function() {
    var theUrl = location.href;
    theUrl = theUrl.split("#")[1];
    checkUrl(theUrl);
});  


var checkUrl = function(u){
    var theComment = $$(".comments-open-content");
    if(u == "_signin"){
        theComment.setStyle('display', 'block');
    };
}



