// JavaScript Document

/* Expand Menu */
var subs_array = new Array("sub1","sub2","sub3","sub5","sub6","sub7","sub8","sub9","sub10","sub11","sub12","sub13","sub14","sub15","sub16","sub17","sub18","sub19","sub20","sub3_1","sub3_2","sub3_3", "sub3_4");

// Put the id's of your hidden divs in this array
function displaySubs(the_sub){
	if (document.getElementById(the_sub).style.display==""){
	document.getElementById(the_sub).style.display = "none";return}
for (i=0;i<subs_array.length;i++){
	var my_sub = document.getElementById(subs_array[i]);
	my_sub.style.display = "none";
	}document.getElementById(the_sub).style.display = "";
}


dayName = new Array ("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
monName = new Array ("Jan.", "Feb.", "Mar.", "Apr.", "May", "June", "July", "Aug.", "Sept.", "Oct.", "Nov.", "Dec.");
now = new Date;
thisYr = now.getYear();
if (thisYr < 1900) {
thisYr = thisYr + 1900;
}

var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin');
}

function messageWindow(title, msg)
{
  var width="450", height="450";
  var left = (screen.width/2) - width/2;
  var top = (screen.height/2) - height/2;
  var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
  var msgWindow = window.open("","msgWindow", styleStr);
  var head = '<head><title>'+title+'</title></head>';
  var body = '<center>'+msg+'</p><br><form><input type="button" value="   Close   " onClick="self.close()"></form></center>';
  msgWindow.document.write(head + body);
}

function MyWin() {
						messageWindow('Out Of Print', '<p align="left">This bestselling book is currently out of print. Please contact your local library to (hopefully) obtain a copy.<br><br>Here are some excellent books that you could find helpful for your pre-retirement education needs, authored by Douglas Gray, LL.B. Look for the most current edition:</p><div align="left"><ul align="left"><li>The Canadian Guide to Will and Estate Planning</li><li>101 Streetsmart Condo Buying Tips for Canadians </li><li>Canadian Home Buying Made Easy </li>  <li>Mortgages Made Easy </li><li>Real Estate Investing for Canadians for Dummies </li><li>Making Money in Real Estate </li><li>The Complete Guide to Buying and Owning Recreational Property in Canada </li>																															  <li>The Canadian Snowbird Guide</li></ul></div><p>Thank you.</p>')
}
 


