function view_profile(id)
{
  document.viewprofile.profile_id.value=id;
  document.viewprofile.submit();
}
function view_forum(id,cat)
{
  document.frmForum.category.value = cat;
  document.frmForum.forum.value = id;
  document.frmForum.action="viewforum.asp";
  document.frmForum.submit();  
}

function view_threads(id)
{
  document.frmThread.thread.value = id;
  document.frmThread.action="viewcomments.asp";
  document.frmThread.submit();  
}

function back_forum(index)
{
  if(index==0)
  {
	var f=document.frmThread;
  }
  else
  {
	var f=document.frmComments;
  }
  f.action="forums.asp";
  f.submit();  
}
function back_thread()
{
  document.frmComments.action="viewforum.asp";
  document.frmComments.submit();  
}

function new_post()
{
  document.frmThread.action="forum_post.asp";
  document.frmThread.submit();  
}
function new_reply(index)
{
  
  if(index!=0)
  {
    document.frmComments.reply_to.value=index;
  }
  else
  {
	document.frmComments.reply_to.value=0;
  }
  document.frmComments.action="forum_reply.asp";
  document.frmComments.submit();  
}

