// JavaScript Document

/* scripts for the printable view navigation */
function go_back(){
	history.go(-1);
}

function print_this(){
if(window.print){
	this.print();
} else {
	alert ("Your browser does not allow the print function. To print this page, please click the print icon at the top of your browser.");
}
}