// opens the custom product calculator on the allprod page

window.name='main';

var newwindow = '';
	
function openCalc() {
	if (!newwindow.location || newwindow.closed) {
		newwindow=window.open('calculator.cfm','calc','height=500,width=600,statusbar,scrollbars,resizable');
	}
	document.forms[0].target="calc";
	document.forms[0].action="calculator.cfm";
	document.forms[0].submit();
}
