function popper() {
	if ( window.location.href.charAt(window.location.href.length-1) == "/" ) {
		//Home Page
		window.open(window.location.href + 'index.cfm?print=1');
	} else if (window.location.href.indexOf("?") > 0 ) {
		// Page with value pairs in URL string
		window.open(window.location.href + '&print=1');
	} else {
		//Page with no value pairs in URL string
		window.open(window.location.href + '?print=1');
	}
}