
function popup_Article(p) {
	window.self.name = "main";
	var width=440;
	var height=200;
	var top=Math.round((screen.height-height)/2);
	var left=Math.round((screen.width-width)/2);
	
	remote_article = window.open('nn.cfm?p='+p, "pop_article" , "top="+top+",left="+left+",width=" + 
			width + ",height=" + height + ",toolbar=0,location=0,directories=0,resizable=0,status=0,menubar=0,scrollbars=1,fullscreen=false");
	remote_article.focus();	
}
