function openNewsItem(intNewsID, strNewsType) {
	if (strNewsType == "Transaction") {
		var strURL = "transactionsnewspopup.php?News_Transactions_ID=" + intNewsID;
	} else {
		var strURL = "ghfnewspopup.php?News_GHF_ID=" + intNewsID;
	}
	var objNewsWindow = window.open(strURL,'','toolbar=yes,scrollbars=yes,resizable=yes,width=675,height=750');
}