  var myProperties  = "toolbar=0,";
      myProperties += "titlebar=0,";
      myProperties += "menubar=0,";
      myProperties += "location=0,";
      myProperties += "scrollbars=1,";
      myProperties += "statusbar=0,";
      myProperties += "resizable=1,";
      myProperties += "left=50,";
      myProperties += "top=0,";
      myProperties += "dependent=1,";

function showStory(mySubject,myFolder,myURL) {
  var myWidth =600;
  var myHeight=600;
  if (myStory) {
      myStory.width=myWidth;
      myStory.height=myHeight;
  }
      myProperties += "width="+myWidth+",";
      myProperties += "height="+myHeight;
  var myStory=window.open(mySubject + '/' + myFolder + '/' + myURL + '.html','myStory', myProperties );
  myStory.focus();
}

function showBrowser(mySubject,myFolder) {
  var myWidth =725;
  var myHeight=625;
  if (myStory) {
      myStory.width=myWidth;
      myStory.height=myHeight;
  }
      myProperties += "width="+myWidth+",";
      myProperties += "height="+myHeight;
      myBaseURL     = "";
  var myStory=window.open(myBaseURL + mySubject + '/' + myFolder + '/imagebrowser.php','myStory', myProperties);
  myStory.focus();
}

function showExtBrowser(myAlbumName) {
  /*
  alert ("Unfortunately this link is not available at the moment.\nPlease try later.\n\n 18 March 2003 13:23EET");
  */
  var myWidth =725;
  var myHeight=625;
  if (myStory) {
      myStory.width=myWidth;
      myStory.height=myHeight;
  }
      myProperties += "width="+myWidth+",";
      myProperties += "height="+myHeight;
      myBaseURL     = "http://www.vandepavert.com/photos/";
  var myStory=window.open(myBaseURL + myAlbumName,'myStory', myProperties);
  myStory.focus();
}

function showDiary(myDate) {
   // myDate parameter is not used, yet.
  var myWidth =600;
  var myHeight=600;
  if (myStory) {
      myStory.width=myWidth;
      myStory.height=myHeight;
  }
      myProperties += "width="+myWidth+",";
      myProperties += "height="+myHeight;
      myBaseURL     = "http://www.vandepavert.com/life/diary/";
  var myStory=window.open(myBaseURL + 'diary.php','myStory', myProperties );
  myStory.focus();
}

function showMap(ax,ay,ra) {
  var myWidth =550;
  var myHeight=500;
  if (myMap) {
      myMap.width=myWidth;
      myMap.height=myHeight;
  }
      myProperties += "width="+myWidth+",";
      myProperties += "height="+myHeight;
      myBaseURL     = "http://145.7.235.101/wmo/explore_maps_lg.asp?";
      myCoordinates = "AX="+ ax + "&AY=" + ay + "&RA=" + ra + "&BA=gbos";
      myURL         = myBaseURL + myCoordinates;
  var myMap=window.open(myURL,'myMap', myProperties);
  myMap.focus();
}
