function ReadMore(id)
{
     document.location='index.php?act=content&action=view&id='+id+'';
}

function removeComment(id, cid)
{
	var check = confirm('Really remove this comment?');
	if(check)
		document.location='index.php?act=content&action=delcomment&id=' + id + '&cid=' + cid + '';
}

function editComment(id, cid)
{
	document.location='index.php?act=content&action=view&id=' + id + '&cid=' + cid + '&edit=true#jump';
}

function quoteComment(id, cid)
{
    document.location='index.php?act=content&action=view&id=' + id + '&cid=' + cid + '&quote=true#quote';
}
