/*
	javascript for Popup controls
	This can be used within popups to provide printing and
	close window functions.
	
*/

	function closePopup() {
		top.close();
	}
	
	function printPopup() {
		window.print();
	}

