// --------------------------------------
// 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
	alert('You are leaving this Web site and entering http://partners.leadfusion.com. We have provided this link for your convenience, but assume no responsibility for the content, links, privacy policy, or security policy of this Web site.\n\n Any tools at the following Web site are provided for educational and illustrative purposes only. The accuracy of the calculations and their applicability to your circumstances are not guaranteed. For personal advice regarding your financial situation, please consult with a financial advisor.');
	window.open(url, '', 'width=490,height=600,left=' + leftposition + ',top=' + topposition + ',scrollbars=yes,resizable=no')
}	