<!-- //

	function newsPop(parent_host, article_id, pWidth, pHeight) {

		var popWindow = null;
//		var popPage = "./code/newsPop.html?article_id=" + article_id;
		var popPage = parent_host + "/code/newsPop.html?article_id=" + article_id;		

		if (!pWidth) {
			var pWidth = 550;
		}	
		
		if (!pHeight) {
			var pHeight = 450;
		}	

			var displayString = "width=" + pWidth + ",height=" + pHeight + ",scrollbars=1,resizable";   
			
    		popWindow = window.open(popPage,'PopWindow',displayString);

				if (popWindow != null) {
					if (popWindow.opener == null) { popWindow.opener = self; }
					popWindow.opener.name = "popDaddy";
				} 		
		
	}

// -->