	function printArticle(url) {
		window.open(url, 'article', 'width=400, height=350, toolbar=no, directories=no, status=no, scrollbars=yes, resizable=yes, menubar=no, location=no')
	}
	
	//Function to open a new window:  URL and window name parameters are passed dynamically from the href tag in the page.
	function newWindow(url, win, w, h, s, r, t, l) {	
		window.open(url, win, "width=" + w + ",height=" + h + ", scrollbars=" + s + ", resizable=" + r + ", toolbar=" + t + ", location=" + l +"");
	}
	
	function closeWindow() {
		window.close(this);	
	}