function doGrabPrintURL() {
	var val = window.location.href;
	//if '?' is already in the query string, then add '&'
	if( val.indexOf("?") > -1 ) {
		val += "&print=yes";
	} else {
		val += "?print=yes";
	}
	window.location.href = val;
}