// JavaScript Document
 
function popupNews(IntNewsID) {
	var MyUrl = 'news-popup.php?nid='+IntNewsID;
	wd = 550;
	ht = 450;
	st = 1;
	d = (screen.width-wd)/2;
	h = ((screen.height-ht)/2);
	window.open(MyUrl,'news','top='+h+',left='+d+',width='+wd+',height='+ht+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars='+st+',resizable='+st+'');
}