﻿// JScript File
//THIS JSCRIPT FILE CONTAINS ALL THE PUBLIC METHODS
$(document).ready(function() {
     $('.showTableForum').click(function () {
        $('.forumTable').show();
        $('.forumTable').slideDown("slow");
    });
 });
function DoDelete(mStr)
{	
	var x;
	x = confirm(mStr);
	if(x)
		return true;
	else
		return false;
}
function showTblAddForum(){
    //alert('hideTable');
    //$('.showTableForum').click(function () {
        //alert('open');
        //$('.forumTable').show();
        //setTimeout("",3300);
        $('table.tblForum').css({ border:" 1px solid #cccccc", backgroundColor:"f2f2f2"});
        $('.forumTable').fadeIn("fast");
    //});
    return false;
}

