function viewNewsDetails(uid) {
	if (uid != null && typeof(uid) != null) {
		if (uid.length > 0 && parseInt(uid) > 0) {
			top.location='./news-details.php?uid=' + parseInt(uid);
			return 1;
		} else { return 0; }
	} else { return 0; }
}

