<!-- New Pop Up Window -->

<!--

function launch(url) {
	self.name = "opener";
	remote = open(url, "remote", "resizable,scrollbars,width=600,height=480,left=0,top=0");
}

// -->

<!-- Print Button -->
function printWindow() {
	bV = parseInt(navigator.appVersion);
	if (bV >= 4) window.print();
}