var serverPath = "";

function openMortgageWin() {
var szUrl;
var szFeatures;
var szReturnedValue;

   szUrl = "mortgage_Calculator/calculator.htm";
   szFeatures = 'width=450,height=350,status=no,help=no,center=yes,resizable=no,scroll=yes';

   // Open the window and return(0) the name of the window
   window.open(szUrl, "MortgageCalc", szFeatures)
}

function openCurrencyWin() {
var szUrl;
var szFeatures;
var szReturnedValue;

   szUrl = "Currency_Calculator/calculator.html";
   szFeatures = 'width=400,height=312,status=no,help=no,center=yes,resizable=no,scroll=yes';

   // Open the window and return(0) the name of the window
   window.open(szUrl, "CurrencyCalc", szFeatures)
}

function openMetricWin() {
var szUrl;
var szFeatures;
var szReturnedValue;

   szUrl = "metric_Calculator/area_calculator.htm";
   szFeatures = 'width=450,height=270,status=no,help=no,center=yes,resizable=no,scroll=yes';

   // Open the window and return(0) the name of the window
   window.open(szUrl, "MetricCalc", szFeatures)
}
function openWin(win) {
var win;
var szUrl;
var szFeatures;
var szReturnedValue;

   szUrl = win;
   szFeatures = 'width=450,height=270,status=no,help=no,center=yes,resizable=no,scroll=yes';

   // Open the window and return(0) the name of the window
   window.open(szUrl, "MetricCalc", szFeatures)
}

