function runCalc(amount)
{
var screenX=screen.width;
var screenY=screen.height;
var winWidth=440;
var winHeight=320;

var topX=(screenX/2) - (winWidth / 2);
var topY=(screenY/2) - (winHeight / 2);

newWin = window.open("creditcal.asp?prod="+amount,"creditCal","width="+winWidth+",height="+winHeight+", left="+topX+",top="+topY);


//newWin.location="http://www.creditenabler.com/able2buy/webjsp/autocalc.jsp?cgid="+code+"&price="+amount+"&id="+rid+"&deposit="+deposit;
}
