<!--
var isMSold = (navigator.appVersion.indexOf('MSIE 4') != -1);
var isNSold = (navigator.appName == "Netscape" && parseInt(navigator.appVersion) == 4);
var isMSnew = (document.all && document.getElementById); 
var isNSnew = (!document.all && document.getElementById); 
var storeNum = storeNum*4;
var storeLoc=new initArray(132,358,"Suite 200","Littlejohn Barristers",
0,0,"Suite 201","",
71,337,"Suite 202","Abstract - The Salon",
0,0,"Suite 203","",
0,0,"Suite 204","",
36,293,"Suite 205","Dr. Tim Smith, C. Psych.",
86,299,"Suite 206","AVAILABLE 1,195 sq. ft.",
115,309,"Suite 207","Barrie College of Hair & Esthetics",
0,0,"Suite 208","",
0,0,"Suite 209","",
0,0,"Suite 210","",
0,0,"Suite 211","",
0,0,"Suite 212","",
0,0,"Suite 213","",
0,0,"Suite 214","",
153,292,"Suite 215","Barrie College of Hair & Esthetics",
0,0,"Suite 216","",
0,0,"Suite 217","",
226,331,"Suite 218","Barrie College of Hair & Esthetics",
0,0,"Suite 219","",
0,0,"Suite 220","",
0,0,"Suite 221","",
0,0,"Suite 222","",
228,282,"Suite 223","Dr. Brian Ing, Optometrist",
0,0,"Suite 224","",
236,255,"Suite 225","Stark Insurance",
0,0,"Suite 226","",
0,0,"Suite 227","",
0,0,"Suite 228","",
0,0,"Suite 229","",
273,169,"Suite 230","Dunbrook Associates Financial Services",
0,0,"Suite 231","",
0,0,"Suite 232","",
0,0,"Suite 233","",
0,0,"Suite 234","",
291,107,"Suite 235","Dr. Mary Horsey",
0,0,"Suite 236","",
0,0,"Suite 237","",
0,0,"Suite 238","",
0,0,"Suite 239","",
271,104,"Suite 240","Dr. David M. Seevaratnam",
0,0,"Suite 241","",
257,101,"Suite 242","R.R. Bajwa (Malik) Child & Family Psychiatry",
240,96,"Suite 243","Huronia Denture Clinic",
213,92,"Suite 244","Financial Horizons Group",
219,161,"Suite 245","The Bilkey Clinic",
198,87,"Suite 246","Financial Horizons Group",
0,0,"Suite 247","",
0,0,"Suite 248","",
0,0,"Suite 249","",
97,167,"Suite 250","H&R Block",
97,144,"Suite 251","Kicx 106.1 & The Dock 104.1 FM",
94,124,"Suite 252","Ruby Sky Event Planning Inc.",
79,100,"Suite 253","Kimberly Brown, Psychotherapist",
0,0,"Suite 254","",
120,74,"Suite 255","The Salvation Army",
0,0,"Suite 256","",
0,0,"Suite 257","",
0,0,"Suite 258","",
0,0,"Suite 259","",
84,69,"Suite 260","(CTC) Computer Training & Consulting");
var m=storeLoc.length;

function dotOn(n) {
  if (isMSold) {
    var whichDot = document.all.dot.style;
  } else if (isNSold) { 
    var whichDot = document.dot;
  } else {
    var whichDot = document.getElementById("dot").style;
  }
  if (n < m) {
    whichDot.visibility='visible';
    whichDot.left = storeLoc[n]+194;
    whichDot.top = storeLoc[n+1]+35;
  } else {
    whichDot.visibility='hidden';
  }
}

function initArray() {
  this.length=initArray.arguments.length;
  for (var x=0; x<this.length; x++) {
    this[x]=initArray.arguments[x];
  }
}

function showLocation(onOff) {
  if (isMSold) {
    var popObject = document.all.map.style;
  } else if (isNSold) {
    var popObject = document.map;
  } else {
    var popObject = document.getElementById('map').style;
  }
  if (onOff == 1) {
    popObject.visibility="visible";
    dotOn(storeNum);
  } else {
    popObject.visibility="hidden";
    dotOn(9999);
  }
}

if (storeNum < 9999) {
  document.write('<div class="locationLayer" id="map"><table width=343 cellpadding=3 cellspacing=0 style="border-collapse:collapse; border:1px solid black;"><tr><td align=left bgcolor="#EEEEEE" style="font:13px/15px arial"><b>Mall Layout</b></td><td align=right bgcolor="#EEEEEE" style="font:13px/15px arial"><a href="javascript:showLocation(0)" style="color:red">Close <img src="../images/X.gif" width=15 height=15 border=0 hspace=0 vspace=0 align=absmiddle></a></td></tr>\n<tr><td colspan=2 bgcolor="#FFFFFF"><img src="../images/layout-offices.gif" width=337 height=420 border=0 vspace=0 hspace=0></td></tr>\n');
  document.write('<tr align=center valign=middle><td width=50% bgcolor="#FFFFFF"><font size=4 color=red><b>'+storeLoc[storeNum+3]+'</b></font></td><td width=50% bgcolor="#FFFFFF">Location: <font color=red>'+storeLoc[storeNum+2]+'</font></td></tr></table>');
  document.write('</div>\n<div class="reddot" ID="dot"><IMG SRC="../images/reddot.gif" width=7 height=7 border=0></div>\n');
} else {
  document.write('<center><table cellpadding=3 cellspacing=0 style="border-collapse:collapse; border:1px solid black; font:9px/11px arial;"><tr>');
  var cols=1;
  for (var x=3; x<=m; x=x+4) {
    if (storeLoc[x] != "") {
      document.write('<td align=right bgcolor="#EEEEEE"><nobr>'+storeLoc[x-1]+'</nobr></td><td align=left bgcolor="#FFFFFF">'+storeLoc[x]+'</td>');
      if (cols==3 && x<(m-4)) {
        document.write('</tr><tr>\n');
        cols=0;
      }
      cols++;
    }
  }
  document.write('</tr></table></center>\n');
}
//-->
