function printWindow(){
	// Checks to make sure the browser version is capable of calling the print dialogue
	// from JavaScript
	bV = parseInt(navigator.appVersion);
	if (bV >= 4) window.print();
}