// JavaScript Document
var popUpWin=0;
function playEconomics_of_Change()
{
	var URLStr="http://www.evolvingyourmoney.com/TheEconomicsofChange.html";
	playAudio(URLStr);
}
function playEvolving_Your_Money_sampler()
{
	var URLStr="http://www.evolvingyourmoney.com/EvolvingYourMoneysampler.html";
	playAudio(URLStr);
}
function playSE_on_Money_and_Business()
{
	var URLStr="http://www.evolvingyourmoney.com/SEonMoneyandBusiness.html";
	playAudio(URLStr);
}
function openEvolvingYourMoney()
{
	var URLStr="../Assets/PDF/EvolvingYourMoneyTeleconference.pdf";
	openPDF(URLStr);
}
function openTranscript()
{
	var URLStr="../Assets/PDF/Transforming_Your_Finances_Class_1.pdf";
	openPDF(URLStr);
}
function playAudio(URLStr)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  var left=0;
  var top=0;
  var width=540;
  var height=400;
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}
function openPDF(URLStr)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  var left=0;
  var top=0;
  var width=800;
  var height=600;
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}