function OpenCommentsPage(id, comment)
{
	window.open('ArticleComments.aspx?id=' + id + '&type=' + comment, null, 'width=650,height=600,toolbar=0');
}

function OpenEmailPage(id)
{
	window.open('ArticleEmail.aspx?id=' + id, null, 'height=250,width=540,top=120,left=200,menubar=0,resizable=0,toolbar=0');
}

function GoBack()
{
	history.go(-1);
}