// --------------------------------------
// MortgageCalculators.js start
// --------------------------------------

function OpenMortgageCalculator(CalcNum)
{
	//declare variables
	var url = 'http://partners.leadfusion.com/tools/lendersnational/home' + CalcNum + '/tool.fcs';

	//set left and top positions					
	var leftposition = (screen.width - 490) / 2;
	var topposition = (screen.height - 700) / 2;
	
	//open window
	window.open(url, '', 'width=490,height=600,left=' + leftposition + ',top=' + topposition + ',scrollbars=yes,resizable=yes')
}	