	function openWin(fnSuffix, winName){
		
		//Appends print tag to URL
		var Url = location.pathname;
		Url = Url + '?print=1';
		
		var props = 'directories=no,menubar=yes,scrollbars=yes,toolbar=yes,width=700,height=550';
		var winObject = window.open (Url, winName, props);
		if (winObject != null) {	
			winObject.focus();
		}
	}
