/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
var clearNav = function() {
    $('navigasiForum').innerHTML = '';
    $('navigasiForumSub').innerHTML = '';
}

window.addEvent('domready',function() {
    $('timeForum').innerHTML = ambilHari();
    var idForum = $('txtIdForum').value;
    if(idForum == '') {
        idForum = '1/home/home.html';
    }

    var dp = {
        id:'9',
        idForum:idForum
    };
    postData('ModPosting','contentForum',dp,'','load');

    $('loginForum').addEvent('click',function() {
        $('formLogin').addClass('cetnoat');
        $('formLogin').tween('height','193px');
        var dp = {
            id:'1'
        };
        postData('ModLogin','formLogin',dp,'','load');

    });

    $('registrasiForum').addEvent('click',function() {
        $('formLogin').addClass('cetnoat');
        $('formLogin').tween('height','280px');
        var dp = {
            id:2
        };
        postData('ModHome','formLogin',dp,'','load');
    });

    $('btnSearchForum').addEvent('click',function() {
        var txtSearch = null;
        txtSearch = $('txtSearchForum').value;
        txtSearch = txtSearch.replace("%s", "");
        if($chk(txtSearch)) {
            var dp = {
                id:'1',
                txtSearch:txtSearch
            };
            postData('ModHome','contentForum',dp,'','load');
        } else {
            alert('Isikan data pencarian !');
            $('txtSearchForum').focus();
        }
    });
});

