function MortgageCalculator(sentprice) {
		var winWidth = 450;
		var winHeight = 400;
		var horiz = (screen.width/2) - winWidth/2;
		var vert = (screen.height/3) - winHeight/2;
		//"includes/calc_mortgage.php","Window2","status,height=375,width=350,resizable=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=yes"
		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");
	}
