//POP-UP WINDOW SCRIPT FOR THE EXPERIMENTS MENU

//pop-up window script thqt is refered to in menu below. any refered to scripts within menu includes need to be placed before the menu.

       var winopts = "toolbar=no,location=no,directories=no,status=no" +
                             ",menubar=no,scrollbars=yes,resizable=yes"+
                             ",width=630,height=430"

function bummer(target) {

   if (navigator.appVersion.indexOf("(X11") != -1 ||
             navigator.appVersion.indexOf("(Mac") != -1)

   {
        listWin=this;
        this.open(target, "forumWindow", winopts);
        this.open(target, "forumWindow", winopts);
   }
else
  {
        listWin=this;
        this.open(target, "forumWindow", winopts);
  }
}


//EXPERIMENTS MENU

//*****PLACE \ before single quotes and carrige returns as to not interfere with the JavaScript "doument.write"******

document.write('\
<BR><A HREF="artificial_demo.html" TARGET="_self">Artificial Fish</A><BR><BR>\
<A HREF="autostereo_demo.html" TARGET="_self">Autostereo</A><BR><BR>\
<A HREF="butterfly_demo.html" TARGET="_self">The Butterfly</A><BR><BR>\
<A HREF="face_demo.html" TARGET="_self">Facial Nuance</A><BR><BR>\
<A HREF="fibonacci_demo.html" TARGET="_self">Fibonacci Machine</A><BR><BR>\
<A HREF="quikwriting_demo.html" TARGET="_self">Quikwriting</A><BR><BR>\
<A HREF="webworld_demo.html" TARGET="_self">Webwide World</A><BR><BR>\
')


