// This is just a generic window-opener function
// that's used by product_data.asp and product_detail.asp
// to start the converage calculator.  The argument
// product is optional and specifies a default product
// value to select.

function startCalculator(product)
{
	window.open("coverage_calculator.asp?product_id="+product,"","menubar=false,scrollbar=false,statusbar=false,width=310,height=260");
}
