function openCalc(calcCode, question) {
	//form the url of the calculator to open
	//question is a paramet that only retirment calcs use
	if (question) {
		calcURL = 'http:/' + '/www.calcbuilder.com/cgi-bin/calcs/' + calcCode + '.cgi/infoplease?Question=' + question;
	}
	else {
		calcURL = 'http:/' + '/www.calcbuilder.com/cgi-bin/calcs/' + calcCode + '.cgi/infoplease';
	}
	
	//open the window with all of the window details
	window.open(calcURL, "_blank", "toolbar=yes,width=560,height=600,status=no,scrollbars,resizable=yes,menubar=yes,location=no,screenX=25,screenY=25,left=25,top=25");
	
	return false;
}
