function mapIt(){
	document.CALC.calculate();
}

function viewReport() {
	var w = 180;
	var h = 90;
	var l = ((screen.width - w) / 2);
	var t = ((screen.height - h) / 2);

	var rptWindow = window.open('','rptWin','width='+w+',height='+h+',left=' + l + ',top='+t +
	'toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes,location=no,directories=no,status=yes');

	rptWindow.document.open();
	rptWindow.document.write('Creating report...');
	rptWindow.document.close();
	var s = document.CALC.sJavaScriptReport('HTML');
	rptWindow.document.open();
	rptWindow.document.write(s);
	rptWindow.document.close();
	rptWindow.focus();
}

