function MortgageCalculator(sentprice) {
		var winWidth = 450;
		var winHeight = 400;
		var horiz = (screen.width/2) - winWidth/2;
		var vert = (screen.height/3) - winHeight/2;
		mortgagecalculator = window.open("/search/mortgage/" + sentprice,"mortgagecalculator", "top="+ vert +",left="+ horiz +",height="+ winHeight +",width="+ winWidth +",location=0,status=0,scrollbars=1,toolbar=0,resizable=0");
	}
