	function newsDetails(newsID, newsTitle, language) {
		var h = 500;
		var w = 500;
		var winl = (screen.width - w) / 2;
		var wint = (screen.height - h) / 2;
//		var winprops = 'width=' + w + ', left=' + winl + ', top=' + wint + ', height=' + h + ', screenX=' + w + ', screenY=' + h + 'toolbar=no, directories=no, location=no, status=yes, menubar=no, resizable=no, scrollbars=yes';
		var winprops = 'width=' + w + ', left=' + winl + ', top=' + wint + ', height=' + h + ', screenX=' + w + ', screenY=' + h + 'toolbar=no, directories=no, location=no, status=yes, menubar=no, scrollbars=yes';
		var newsWindow = window.open('newsDetails.php?ID=' + newsID + "&language=" + language, '_blank', winprops);
	}

