// **************************
// JAVASCRIPT PRINT FUNCTIONS
// **************************

function printWindow(filename, windowTitle) {
 	var str = "toolbar=0,status=0,menubar=0,scrollbars=1,resizable=1";
	if (window.screen) {
		// center dialog box
		var aw = screen.availWidth;
		var ah = screen.availHeight;
		var posH = aw/2 - 380;
		var posV = ah/2 - 250;
		str += ",width=800,height=500,screenX=" + posH + ",left=" + posH;
		str += ",screenY=" + posV + ",top=" + posV;
	}		

	window.open(filename, windowTitle, str);
}

