
function editData(id)
{
        document.form1.action="index.php?page=newthread&mode=Edit&tId="+id;
        document.form1.submit();

}


function replyData(id,pid)
{
 
        document.form1.action="index.php?page=new_reply_post&id="+id+"&pid="+pid;
        document.form1.submit();

}

