function doSomething(something)
    { 
      if (something=='selectTopics') 
         {topicsForm.option.value = optionsForm.selectTopics.value;
          document.topicsForm.submit();}
      if (something=='selectPlaces') 
         {
          if (optionsForm.selectPlaces.value=='searchPlaces')
             { window.location = 'http://cosmos.ucc.ie/cs1064/jabowen/IPSC/php/cs.php?lv=1s7';
             }
          else { placesForm.option.value = optionsForm.selectPlaces.value;
                 document.placesForm.submit();}
         }
      if (something=='selectTimeline') 
         {timelineForm.option.value = optionsForm.selectTimeline.value;
          if (optionsForm.selectTimeline.value=='listEventsInSomeYear')
            {
             alert('In Internet Explorer 7, this feature will only work if you include this website in your trusted zone.');
             var desiredYear = prompt("Which year's events do you want?",
                                  'Enter year in form YYYY');
             window.location = '../php/timeline.php'+
                 "?timeline=1&desiredYear="+desiredYear;

            }
          else if (optionsForm.selectTimeline.value=='searchEvents')
            {
             window.location = 'http://cosmos.ucc.ie/cs1064/jabowen/IPSC/php/cs.php?lv=1s5';
            }
          else
            { document.timelineForm.submit();}
         }
    }

function resetOthersAndSubmit(value,something)
    { 
      if (something!='selectMaps') 
         {optionsForm.selectMaps.value='null';}
      if (something!='selectArticles') 
         {optionsForm.selectArticles.value='null';}
      if (something!='selectClips') 
         {optionsForm.selectClips.value='null';}
      if (something!='selectAuthors') 
         {optionsForm.selectAuthors.value='null';}
      if (something!='selectJournals') 
         {optionsForm.selectJournals.value='null';}
      if (something!='selectProducers') 
         {optionsForm.selectProducers.value='null';}
      if (something!='selectTopics') 
         {optionsForm.selectTopics.value='null';}
      if (something!='selectSites') 
         {optionsForm.selectSites.value='null';}
      if (something!='selectPlaces') 
         {optionsForm.selectPlaces.value='null';}
      if (something!='selectQuotations') 
         {optionsForm.selectQuotations.value='null';}
      if (something!='selectTimeline') 
         {optionsForm.selectTimeline.value='null';}

      if ( (something=='selectClips') && (value=='selectByID') )
         { getItemByID('clip'); }
      else if ( (something=='selectClips') && (value=='search') )
         { window.location='../php/cs.php?lv=1s3'; }
      else if ( (something=='selectQuotations') && (value=='searchQuotations') )
         { window.location='../php/cs.php?lv=1s4'; }
      else if ( (something=='selectMaps') && (value=='selectByID') )
         { getItemByID('map'); }
      else if ( (something=='selectMaps') && (value=='search') )
         { window.location='../php/cs.php?lv=1s2'; }
      else if ( (something=='selectMaps') && (value=='listAllMaps') )
         { window.location='../php/cs.php?sMask=ny&o16=1'; }
      else if ( (something=='selectArticles') && (value=='selectByID') )
         { getItemByID('article'); }
      else if ( (something=='selectArticles') && (value=='search') )
         { window.location='../php/cs.php?lv=1s1'; }
      else if ( (something=='selectArticles') && (value=='advancedSearch') )
         { window.location='../php/cs.php?lv=2s1'; }
      else if ( (something=='selectArticles') && (value=='selectByIDrange') )
         { getItemByIDrange('article'); }
         else 
         {document.optionsForm.submit(); }
    }

function submitAboutRequest(upURL)
    { window.location = upURL+"/php/about.php";
    }

function submitHomeRequest()
    { document.bottomFormOnBanner.submit(); }


function submitSearchRequest(upURL)
    { 
      /* window.open(upURL+"/php/cs.php?lv=1s1");  */
      window.location=upURL+"/php/cs.php?lv=1s1"; 
    }

function getItemByIDrange(type)
    { 
      alert('In Internet Explorer 7, this feature will only work if you include this website in your trusted zone.');
      var range=prompt('ID range (in form n-m) of required items?',' ');
      limits = range.split('-')
      start=limits[0];
      finish=limits[1];
      if (isNaN(start) || isNaN(finish))
         { alert('You must enter two positive integers in form\n'+
                 '              n-m \n'+
                 'for example: \n'+
                 '              45102-45125'); }
         else {
                if (type=='article')
                   { window.location='art.php?aid1='+start+'&aid2='+finish; }
                else if (type=='author')
                   { window.location='db.php?auid='+id; }
              }
    }

function getItemByID(type)
    { 
      alert('In Internet Explorer 7, this feature will only work if you include this website in your trusted zone.');
      var id=prompt('ID number of required item?',' ');
      if ( (id=='') || (id==' ') || (id==null) )
         { alert('You did not enter an ID number. \n Please try again ....');
         }
      else if (isNaN(id))
         { alert('You must enter a positive integer. \n Please try again ...'); 
           /* getItemByID(type);  */
         }
         else {
                if (type=='article')
                   { window.location='db.php?aid='+id; }
                else if (type=='map')
                   { window.location='db.php?mid='+id; }
                else if (type=='clip')
                   { window.location='db.php?cid='+id; }
                else if (type=='author')
                   { window.location='db.php?auid='+id; }
              }
    }

function showNewlyAddedMaterial()
    { 
      var days=prompt('You want material that was placed in the database in the last few days. From how many days?','1');
      if (isNaN(days))
         { alert('You must enter a positive integer'); }
         else {
               document.bottomFormOnBanner.numberOfRecentDays.value=days;
               document.bottomFormOnBanner.submit(); 
              }
    }

function contactUs(upURL)
    { window.location = upURL+"/php/contact.php";
    }

function hitCounts(upURL)
    { window.location = upURL+"/php/showHitCount.php";
    }

function login(upURL)
    { window.location = upURL+"/editorial/login.php";
    }

function logout(upURL)
    { window.location = upURL+"/editorial/logout.php";
    }

function updateSyndication(upURL)
    { 
      window.location = upURL+"/ipsc/updateIPSCSyndication.html";
    }

function listJournals(someString,upURL)
    { window.location = upURL+"/php/journals.php?selectJournals="+someString;
    }

function listAuthors(someString,upURL)
    {  
       if (someString=='doShowAuthorCategories')
          { window.location = upURL+"/php/toggle.php?doShowAuthorCategories=1"; }
     else if (someString=='dontShowAuthorCategories')
          { window.location = upURL+"/php/toggle.php?dontShowAuthorCategories=1"; }
      else if ( someString=='selectByID' )
         { 
           getItemByID('author'); 
         }
      else if ( someString=='search' )
         { 
           window.location='../php/cs.php?lv=1s6'; 
         }
         else
          { window.location = upURL+"/php/authors.php?selectAuthors="+someString;}
    }


function panel(upURL)
    { window.location = upURL+"/editorial/control.php";
    }

function goToCorkPSC()
    { window.location = "http://www.corkpsc.org/ucc.php";
    }

function ceilt(ceiltStyle)
{
document.write("<style>.secret {display:");
document.write(ceiltStyle);
document.write("}</style>");
}

function printBanner(crisis,mainUserInterface,readerEditorID,
                     showAuthorCategories,upURL)
{
/*
    if (crisis=='westPapua')
       { echo "";
       }
       else
       {
*/
    printPalestineBanner(crisis,mainUserInterface,readerEditorID,
                         showAuthorCategories,upURL);
/*
       }
*/
}

function printPalestineBanner(crisis,mainUserInterface,readerEditorID,
                     showAuthorCategories,upURL)
{
document.write('<a name="topOfPage"></a>');
document.write('<form name="optionsForm" class="dummy" ');
document.write('      style="font-family:arial;height:0.6in;padding:0.0in;margin:0.0in;');
/*
document.write('      cursor:hand;');
*/
document.write('             background-color:black;color:white"');
document.write('      method="post" action="');
document.write(mainUserInterface);
document.write('" >');
document.write('<table style="color:white;text-align:left;margin:0.0in;padding:0.0in;');
document.write('       font-size:12;display:inline">');
document.write('<tr style="margin:0.0in;padding:0.0in">');
document.write('<td style="width:170;font-size:12" ');
document.write('    onmouseover = \'this.style.backgrouncColor="white";');
document.write('                   this.style.color="red";\'');
document.write('    onmouseout = \'this.style.backgrouncColor="red";');
document.write('                   this.style.color="white";\'');
document.write('   onClick=\'');
document.write('             optionsForm.selectMaps.style.display="block";');
document.write('             optionsForm.selectArticles.style.display="none";');
document.write('             optionsForm.selectClips.style.display="none";');
document.write('             optionsForm.selectSites.style.display="none";');
document.write('             optionsForm.selectPlaces.style.display="none";');
document.write('             optionsForm.selectQuotations.style.display="none";');
document.write('             optionsForm.selectAuthors.style.display="none";');
document.write('             optionsForm.selectJournals.style.display="none";');
document.write('             optionsForm.selectProducers.style.display="none";');
document.write('             optionsForm.selectTopics.style.display="none";');
document.write('             optionsForm.selectTimeline.style.display="none";');
document.write('           \'');
document.write('>');
document.write('Maps and pictures');
document.write('</td>');
document.write('<td style=\'width:200;font-size:12\' ');
document.write('    onmouseover = \'this.style.backgrouncColor="white";');
document.write('                   this.style.color="red";\'');
document.write('    onmouseout = \'this.style.backgrouncColor="red";');
document.write('                   this.style.color="white";\'');
document.write('   onClick=\'');
document.write('             optionsForm.selectMaps.style.display="none";');
document.write('             optionsForm.selectArticles.style.display="block";');
document.write('             optionsForm.selectClips.style.display="none";');
document.write('             optionsForm.selectSites.style.display="none";');
document.write('             optionsForm.selectPlaces.style.display="none";');
document.write('             optionsForm.selectQuotations.style.display="none";');
document.write('             optionsForm.selectAuthors.style.display="none";');
document.write('             optionsForm.selectJournals.style.display="none";');
document.write('             optionsForm.selectProducers.style.display="none";');
document.write('             optionsForm.selectTopics.style.display="none";');
document.write('             optionsForm.selectTimeline.style.display="none";');
document.write('           \'');
document.write('>');
document.write('Articles and books');
document.write('</td>');
document.write('<td style=\'width:170;font-size:12\' ');
document.write('    onmouseover = \'this.style.backgrouncColor="white";');
document.write('                   this.style.color="red";\'');
document.write('    onmouseout = \'this.style.backgrouncColor="red";');
document.write('                   this.style.color="white";\'');
document.write('   onClick=\'');
document.write('             optionsForm.selectMaps.style.display="none";');
document.write('             optionsForm.selectArticles.style.display="none";');
document.write('             optionsForm.selectClips.style.display="block";');
document.write('             optionsForm.selectSites.style.display="none";');
document.write('             optionsForm.selectPlaces.style.display="none";');
document.write('             optionsForm.selectQuotations.style.display="none";');
document.write('             optionsForm.selectAuthors.style.display="none";');
document.write('             optionsForm.selectJournals.style.display="none";');
document.write('             optionsForm.selectProducers.style.display="none";');
document.write('             optionsForm.selectTopics.style.display="none";');
document.write('             optionsForm.selectTimeline.style.display="none";');
/*
document.write('            window.location="../php/cs.php?lv=1s3";');
*/
document.write('           \'');
document.write('>');
document.write('Audio-visual material');
document.write('</td>');
document.write('<td>');
document.write('<a style="color:white;text-decoration:none;font-size:12"');
document.write('    onmouseover = \'this.style.color="red";\'');
document.write('    onmouseout = \'this.style.color="white";\'');
document.write(' href="../glosses/sites.html">Web-sites</a>');
document.write('</td>');
/*
document.write('<td style=\'width:170;font-size:12\' ');
document.write('    onmouseover = \'this.style.backgrouncColor="white";');
document.write('                   this.style.color="red";\'');
document.write('    onmouseout = \'this.style.backgrouncColor="red";');
document.write('                   this.style.color="white";\'');
document.write('   onClick=\'');
document.write('             optionsForm.selectMaps.style.display="none";');
document.write('             optionsForm.selectArticles.style.display="none";');
document.write('             optionsForm.selectClips.style.display="none";');
document.write('             optionsForm.selectSites.style.display="block";');
document.write('             optionsForm.selectPlaces.style.display="none";');
document.write('             optionsForm.selectQuotations.style.display="none";');
document.write('             optionsForm.selectAuthors.style.display="none";');
document.write('             optionsForm.selectJournals.style.display="none";');
document.write('             optionsForm.selectProducers.style.display="none";');
document.write('             optionsForm.selectTopics.style.display="none";');
document.write('             optionsForm.selectTimeline.style.display="none";');
document.write('           \'');
document.write('>');
document.write('Web-sites');
document.write('</td>');
*/
document.write('<td style=\'width:170;font-size:12\' ');
document.write('    onmouseover = \'this.style.backgrouncColor="white";');
document.write('                   this.style.color="red";\'');
document.write('    onmouseout = \'this.style.backgrouncColor="red";');
document.write('                   this.style.color="white";\'');
document.write('   onClick=\'');
document.write('             optionsForm.selectMaps.style.display="none";');
document.write('             optionsForm.selectArticles.style.display="none";');
document.write('             optionsForm.selectClips.style.display="none";');
document.write('             optionsForm.selectSites.style.display="none";');
document.write('             optionsForm.selectPlaces.style.display="block";');
document.write('             optionsForm.selectQuotations.style.display="none";');
document.write('             optionsForm.selectAuthors.style.display="none";');
document.write('             optionsForm.selectJournals.style.display="none";');
document.write('             optionsForm.selectProducers.style.display="none";');
document.write('             optionsForm.selectTopics.style.display="none";');
document.write('             optionsForm.selectTimeline.style.display="none";');
document.write('           \'');
document.write('>');
document.write('Places');
document.write('</td>');
document.write('<td style=\'width:170;font-size:12\' ');
document.write('    onmouseover = \'this.style.backgrouncColor="white";');
document.write('                   this.style.color="red";\'');
document.write('    onmouseout = \'this.style.backgrouncColor="red";');
document.write('                   this.style.color="white";\'');
document.write('   onClick=\'');
document.write('             optionsForm.selectMaps.style.display="none";');
document.write('             optionsForm.selectArticles.style.display="none";');
document.write('             optionsForm.selectClips.style.display="none";');
document.write('             optionsForm.selectSites.style.display="none";');
document.write('             optionsForm.selectPlaces.style.display="none";');
document.write('             optionsForm.selectQuotations.style.display="block";');
document.write('             optionsForm.selectAuthors.style.display="none";');
document.write('             optionsForm.selectJournals.style.display="none";');
document.write('             optionsForm.selectProducers.style.display="none";');
document.write('             optionsForm.selectTopics.style.display="none";');
document.write('             optionsForm.selectTimeline.style.display="none";');
document.write('           \'');
document.write('>');
document.write('Quotations');
document.write('</td>');
document.write('</tr>');
document.write('<tr style="margin:0.0in;padding:0.0in">');
document.write('<td>');
document.write('<select name="selectMaps" ');
document.write('        style="font-size:12;display:none"');
document.write('                     onChange="resetOthersAndSubmit(this.value,\'selectMaps\')">');
document.write('<option value="null" selected>Choose option ...</option>');
document.write('<option value="selectByID">Select by item ID #</option>');
document.write('<option value="search">Search maps/pictures</option>');
document.write('<option value="listAllMaps">List all maps/pictures</option>');
/*
document.write('<option value="selectByYear">Select by year</option>');
document.write('<option value="selectByAuthor">Select by author</option>');
document.write('<option value="selectByTopic">Select by topic</option>');
document.write('<option value="selectByJournal">Select by journal</option>');
document.write('<option value="selectByKeyWords">Select by key-words</option>');
*/
document.write('</select>');
document.write('</td>');
document.write('<td>');
document.write('<select name="selectArticles" ');
document.write('        style="font-size:12;display:none"');
document.write('                     onChange="resetOthersAndSubmit(this.value,\'selectArticles\')">');
document.write('<option value="null" selected>Choose option ...</option>');
document.write('<option value="selectByID">Select by item ID #</option>');
document.write('<option value="selectByIDrange">Select by ID range</option>');
document.write('<option value="search">Search articles/books</option>');
document.write('<option value="advancedSearch">Search articles/books (advanced)</option>');
document.write('<!--');
document.write('<option value="showYearlyTotals">Show yearly totals</option>');
document.write('<option value="listAllArticles">List all</option>');
document.write('<option value="selectByYear">Select by year</option>');
document.write('<option value="selectByAuthor">Select by author</option>');
document.write('<option value="selectByTopic">Select by topic</option>');
document.write('<option value="selectByJournal">Select by journal</option>');
document.write('<option value="selectByKeyWords">Select by key-words</option>');
document.write('-->');
document.write('</select>');
document.write('</td>');
document.write('<td>');
document.write('<select name="selectClips" ');
document.write('        style="font-size:12;display:none"');
document.write('                     onChange="resetOthersAndSubmit(this.value,\'selectClips\')">');
document.write('<option value="null" selected>Choose option ...</option>');
document.write('<option value="selectByID">Select by item ID #</option>');
document.write('<option value="search">Search clips</option>');
/*
document.write('<option value="listAllClips">List all</option>');
document.write('<option value="selectByYear">Select by year</option>');
document.write('<option value="selectByAuthor">Select by speaker</option>');
document.write('<option value="selectByTopic">Select by topic</option>');
document.write('<option value="selectByProducer">Select by producer</option>');
document.write('<option value="selectByKeyWords">Select by key-words</option>');
*/
document.write('</select>');
document.write('</td>');
document.write('<td>');
document.write('<select name="selectSites" ');
document.write('        style="font-size:12;display:none"');
document.write('                     onChange="resetOthersAndSubmit(this.value,\'selectSites\')">');
document.write('<option value="null" selected>Choose option ...</option>');
document.write('<option value="listAllSites">List all</option>');
document.write('</select>');
document.write('</td>');
document.write('<td>');
document.write('<select name="selectPlaces" ');
document.write('        style="font-size:12;display:none"');
document.write('                     onChange="doSomething(\'selectPlaces\')">');
document.write('<option value="null" selected>Choose option ...</option>');
document.write('<option value="listAllPlaces">Alphabetical list</option>');
document.write('<option value="showTree">Taxonomy</option> ');
document.write('<option value="searchPlaces">Search the set of places</option> ');
document.write('</select>');
document.write('</td>');
document.write('<td style=\'width:170;font-size:12\' >');
document.write('<select name="selectQuotations" ');
document.write('        style="font-size:12;display:none"');
document.write('                     onChange="resetOthersAndSubmit(this.value,\'selectQuotations\')">');
document.write('<option value="null" selected>Choose option ...</option>');
document.write('<option value="listAllBriefly">List all</option>');
document.write('<option value="searchQuotations">Search the set of quotations</option> ');
document.write('<!--');
document.write('<option value="listAllFully">List all with citation details</option>');
document.write('-->');
document.write('</select>');
document.write('</td>');
document.write('</tr>');
document.write('<tr style="margin:0.0in;padding:0.0in">');
document.write('<td style=\'width:170;font-size:12\' ');
document.write('    onmouseover = \'this.style.backgrouncColor="white";');
document.write('                   this.style.color="red";\'');
document.write('    onmouseout = \'this.style.backgrouncColor="red";');
document.write('                   this.style.color="white";\'');
document.write('   onClick=\'');
document.write('             optionsForm.selectMaps.style.display="none";');
document.write('             optionsForm.selectArticles.style.display="none";');
document.write('             optionsForm.selectClips.style.display="none";');
document.write('             optionsForm.selectSites.style.display="none";');
document.write('             optionsForm.selectPlaces.style.display="none";');
document.write('             optionsForm.selectQuotations.style.display="none";');
document.write('             optionsForm.selectAuthors.style.display="block";');
document.write('             optionsForm.selectJournals.style.display="none";');
document.write('             optionsForm.selectProducers.style.display="none";');
document.write('             optionsForm.selectTopics.style.display="none";');
document.write('             optionsForm.selectTimeline.style.display="none";');
document.write('           \'');
document.write('>');
document.write('Authors and speakers');
document.write('</td>');
document.write('<td style=\'width:200;font-size:12\' ');
document.write('    onmouseover = \'this.style.backgrouncColor="white";');
document.write('                   this.style.color="red";\'');
document.write('    onmouseout = \'this.style.backgrouncColor="red";');
document.write('                   this.style.color="white";\'');
document.write('   onClick=\'');
document.write('             optionsForm.selectMaps.style.display="none";');
document.write('             optionsForm.selectArticles.style.display="none";');
document.write('             optionsForm.selectClips.style.display="none";');
document.write('             optionsForm.selectSites.style.display="none";');
document.write('             optionsForm.selectPlaces.style.display="none";');
document.write('             optionsForm.selectQuotations.style.display="none";');
document.write('             optionsForm.selectAuthors.style.display="none";');
document.write('             optionsForm.selectJournals.style.display="block";');
document.write('             optionsForm.selectProducers.style.display="none";');
document.write('             optionsForm.selectTopics.style.display="none";');
document.write('             optionsForm.selectTimeline.style.display="none";');
document.write('           \'');
document.write('>');
document.write('Journals');
document.write('</td>');
document.write('<td style=\'width:170;font-size:12\' ');
document.write('    onmouseover = \'this.style.backgrouncColor="white";');
document.write('                   this.style.color="red";\'');
document.write('    onmouseout = \'this.style.backgrouncColor="red";');
document.write('                   this.style.color="white";\'');
document.write('   onClick=\'');
document.write('             optionsForm.selectMaps.style.display="none";');
document.write('             optionsForm.selectArticles.style.display="none";');
document.write('             optionsForm.selectClips.style.display="none";');
document.write('             optionsForm.selectSites.style.display="none";');
document.write('             optionsForm.selectPlaces.style.display="none";');
document.write('             optionsForm.selectQuotations.style.display="none";');
document.write('             optionsForm.selectAuthors.style.display="none";');
document.write('             optionsForm.selectJournals.style.display="none";');
document.write('             optionsForm.selectProducers.style.display="block";');
document.write('             optionsForm.selectTopics.style.display="none";');
document.write('             optionsForm.selectTimeline.style.display="none";');
document.write('           \'');
document.write('>');
document.write('Broadcasters');
document.write('</td>');
document.write('<td style=\'width:170;font-size:12\' ');
document.write('    onmouseover = \'this.style.backgrouncColor="white";');
document.write('                   this.style.color="red";\'');
document.write('    onmouseout = \'this.style.backgrouncColor="red";');
document.write('                   this.style.color="white";\'');
document.write('   onClick=\'');
document.write('             optionsForm.selectMaps.style.display="none";');
document.write('             optionsForm.selectArticles.style.display="none";');
document.write('             optionsForm.selectClips.style.display="none";');
document.write('             optionsForm.selectSites.style.display="none";');
document.write('             optionsForm.selectPlaces.style.display="none";');
document.write('             optionsForm.selectQuotations.style.display="none";');
document.write('             optionsForm.selectAuthors.style.display="none";');
document.write('             optionsForm.selectJournals.style.display="none";');
document.write('             optionsForm.selectProducers.style.display="none";');
document.write('             optionsForm.selectTopics.style.display="block";');
document.write('             optionsForm.selectTimeline.style.display="none";');
document.write('           \'');
document.write('>');
document.write('Topics');
document.write('</td>');
document.write('<td style=\'width:170;font-size:12\' ');
document.write('    onmouseover = \'this.style.backgrouncColor="white";');
document.write('                   this.style.color="red";\'');
document.write('    onmouseout = \'this.style.backgrouncColor="red";');
document.write('                   this.style.color="white";\'');
document.write('   onClick=\'');
document.write('             optionsForm.selectMaps.style.display="none";');
document.write('             optionsForm.selectArticles.style.display="none";');
document.write('             optionsForm.selectClips.style.display="none";');
document.write('             optionsForm.selectSites.style.display="none";');
document.write('             optionsForm.selectPlaces.style.display="none";');
document.write('             optionsForm.selectQuotations.style.display="none";');
document.write('             optionsForm.selectAuthors.style.display="none";');
document.write('             optionsForm.selectJournals.style.display="none";');
document.write('             optionsForm.selectProducers.style.display="none";');
document.write('             optionsForm.selectTopics.style.display="none";');
document.write('             optionsForm.selectTimeline.style.display="block";');
document.write('           \'');
document.write('>');
document.write('History Timeline ');
document.write('</td>');
document.write('<td>');
document.write('<a style="color:white;text-decoration:none;font-size:12"');
document.write('    onmouseover = \'this.style.color="red";\'');
document.write('    onmouseout = \'this.style.color="white";\'');
document.write(' href="../synd/quotationsBriefly.html">Quotations with Provenance</a>');
document.write('</td>');
document.write('</tr>');
document.write('<tr style="margin:0.0in;padding:0.0in">');
document.write('<td>');
document.write('<select name="selectAuthors" ');
document.write('        style="font-size:12;display:none"');
document.write('                     onChange="listAuthors(this.value,\''+upURL+'\')">');
document.write('<option value="null" selected>Choose option ...</option>');
document.write('<option value="selectByID">Select by ID #</option>');
document.write('<option value="search">Search authors</option>');
document.write('<option value="listAllAuthors">List all authors alphabetically</option>');
if (readerEditorID==1)
   {
document.write('    <option value="showUnmoderatedAuthors">Show unmoderated authors</option>');
   }

if ( (readerEditorID=='NULL') && (showAuthorCategories=='NULL') )
   {
document.write('    <option value="doShowAuthorCategories">Turn on display of author categories</option>');
   }

if ( (readerEditorID=='NULL') && (showAuthorCategories!='NULL') )
   {
document.write('    <option value="dontShowAuthorCategories">Turn off display of author categories</option>');
   }

if ( (readerEditorID!='NULL') || (showAuthorCategories!='NULL') )
   {
document.write('    <option value="selectByCategory">Select authors by category</option>');
   }


document.write('<option value="selectByJournal">Select authors by journal</option>');
/*
document.write('<option value="selectByWords">Select authors by key-words</option>');
*/
document.write('<option value="giveArticleCounts">Order authors by number of articles</option>');

if (readerEditorID!='NULL')
   {
document.write('    <option value="listAllAuthorsWithIDs">');
document.write('            List all authors, in order of ID number</option>');
   }

document.write('</select>');
document.write('</td>');
document.write('<td>');
document.write('<select name="selectJournals" ');
document.write('        style="font-size:12;display:none"');
document.write('                     onChange="listJournals(this.value,\''+upURL+'\')">');
document.write('<option value="null" selected>Choose option ...</option>');
document.write('<option value="listAllJournals">List alphabetically</option>');
document.write('<option value="giveArticleCounts">Order by number of articles</option>');
document.write('</select>');
document.write('</td>');
document.write('<td>');
document.write('<select name="selectProducers" ');
document.write('        style="font-size:12;display:none"');
document.write('                     onChange="resetOthersAndSubmit(this.value,\'selectProducers\')">');
document.write('<option value="null" selected>Choose option ...</option>');
document.write('<option value="listAllProducers">List all</option>');
document.write('</select>');
document.write('</td>');
document.write('<td>');
document.write('<select name="selectTopics" ');
document.write('        style="font-size:12;display:none"');
document.write('                     onChange="doSomething(\'selectTopics\')">');
document.write('<option value="null" selected>Choose option ...</option>');
document.write('<option value="listAllTopics">Alphabetical list</option>');
document.write('<option value="showTree">Taxonomy</option> ');
document.write('</select>');
document.write('</td>');
document.write('<td>');
document.write('<select name="selectTimeline" ');
document.write('        style="font-size:12;display:none"');
document.write('                     onChange="doSomething(\'selectTimeline\')">');
document.write('<option value="null" selected>Choose option ...</option>');
document.write('<option value="thisYearsEvents">Select this year\'s events</option>');
document.write('<option value="listEventsInSomeYear">Select events by year</option>');
document.write('<option value="searchEvents">Search the set of events</option>');
document.write('<option value="listAllEvents">List all events</option>');
document.write('</select>');
document.write('</td>');
document.write('</tr>');
document.write('</table>');
document.write('</form>');
document.write('<form>');
document.write('<!--DUMMY form tag to stop Google using this stuff in abstracts-->');
document.write('<table style="margin:0.0in;padding:0.0in">');
document.write('<tr style="margin:0.0in;padding:0.0in">');
document.write('<td rowspan=2>');
document.write('<IMG  style="height:50;margin:0.0in"');
document.write('     alt="Palestinian flag" border=0 src="');
document.write(upURL);
document.write('/php/palestineFlag.jpg">');
document.write('</td>');
document.write('<td>');
document.write('<span style="font-size:20;font-weight:bold">');
document.write('Palestine: Information with Provenance (PIWP database)</span>');
document.write('</td>');
document.write('</tr>');
document.write('<tr style="margin:0.0in;padding:0.0in">');
document.write('<td>');
document.write('<span style="font-size:12">');
document.write('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;');
document.write('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;');
document.write('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;');
document.write('"Who says what, why they say it and what others say about them" <br>');
document.write('</span>');
document.write('<span style="color:blue;font-size:12">');
document.write('We give you documents from all points on the ideological spectrum, both Zionist and anti-Zionist.');
document.write(' We give you background on everybody whose opinion you find here. We also let you see what these people/organizations say about each other.');
document.write('</span>');
document.write('<!--');
document.write('<span style="color:red;font-size:12">');
document.write('Who is telling the truth about Israel/Palestine? ');
document.write('</span>');
document.write('<span style="color:black;font-size:12">');
document.write('Decide for yourself!');
document.write('<span style="color:black;font-size:12">');
document.write('We give ');
document.write('<span style="color:blue">');
document.write('<strong>');
document.write('background information ');
document.write('</strong>');
document.write('on every author, speaker, ');
document.write('journal or broadcaster</span> whose opinions you find here.');
document.write('Where possible, we also let you see ');
document.write('<span style="color:blue">');
document.write('what they say about each other</span>.');
document.write('We cite ');
document.write('<span style="color:blue">');
document.write('<strong>');
document.write('varied opinion sources ');
document.write('</strong>');
document.write('-- Palestinians, Zionist Israelis and Jews, non-Zionist Israelis and Jews, and others</span>');
document.write('</span>');
document.write('-->');
document.write('</td>');
document.write('</tr>');
document.write('</table>');
document.write('</form>');
document.write('<form name="bottomFormOnBanner" class="dummy" ');
document.write('      style="font-family:arial;height:0.6in;padding:0.0in;margin:0.0in;');
/*
document.write('      cursor:hand;');
*/
document.write('             background-color:green"');
document.write('      method="post" action="');
document.write(mainUserInterface);
document.write('" >');
document.write('<table style="margin:0.0in;padding:0.0in">');
document.write('<tr style="margin:0.0in;padding:0.0in">');
document.write('<td style="color:white;width:250;font-size:12;margin:0.0in"');
document.write('    onmouseover = \'this.style.backgrouncColor="white";');
document.write('                   this.style.color="red";\'');
document.write('    onmouseout = \'this.style.backgrouncColor="red";');
document.write('                   this.style.color="white";\'');
document.write('   onClick="submitAboutRequest(\''+upURL+'\')">');
document.write('About this database');
document.write('</td>');
document.write('<td style="color:white;width:70;font-size:12"');
document.write('    onmouseover = \'this.style.backgrouncColor="white";');
document.write('                   this.style.color="red";\'');
document.write('    onmouseout = \'this.style.backgrouncColor="red";');
document.write('                   this.style.color="white";\'');
document.write('   onClick="submitHomeRequest()">');
document.write('<img style="margin:0.0in" src="../images/homeGreen.gif"> Home');
document.write('</td>');
    if ( (readerEditorID>0) && (readerEditorID<3) && (upURL=='..') )
       {
document.write('        <td style="color:white;width:150;font-size:12"');
document.write('                          this.style.color="white";\'');
document.write('            onClick="window.location=\'../php/oldhome.php\'">');
document.write('<img style="margin:0.0in" src="../images/homeGreen.gif"> Old Home');
document.write('        </td>');
       }
document.write('<td style="color:white;width:200;font-size:12"');
document.write('    onmouseover = \'this.style.backgrouncColor="white";');
document.write('                   this.style.color="red";\'');
document.write('    onmouseout = \'this.style.backgrouncColor="red";');
document.write('                   this.style.color="white";\'');
document.write('   onClick="contactUs(\''+upURL+'\')">');
document.write('<img src="../images/letter.gif"> Contact us');
document.write('</td>');
document.write('<td style="color:white;width:70;font-size:12"');
document.write('    onmouseover = \'this.style.backgrouncColor="white";');
document.write('                   this.style.color="red";\'');
document.write('    onmouseout = \'this.style.backgrouncColor="red";');
document.write('                   this.style.color="white";\'');
document.write('   onClick="submitSearchRequest(\''+upURL+'\')">');
document.write('<img style="border-style:none" alt="Search for articles,maps,audio-visual material, biographies, historical events, place descriptions, ..." src="'+upURL+'/images/search2.jpg">');
document.write('</td>');
document.write('<!--');
document.write('<td>');
document.write('<a style="border-style:none;border-color:green" ');
document.write('   target=_blank"');
document.write('   title="Search for articles,maps,audio-visual material, biographies, historical events, place descriptions, ..."');
document.write('   href="../php/cs.php?lv=1s1"><img style="border-style:none" src="../images/search2.jpg"></a>');
document.write('</td>');
document.write('-->');
document.write('</tr>');
document.write('</td>');
document.write('<td style="color:white;width:250;font-size:12"');
document.write('    onmouseover = \'this.style.backgrouncColor="white";');
document.write('                   this.style.color="red";\'');
document.write('    onmouseout = \'this.style.backgrouncColor="red";');
document.write('                   this.style.color="white";\'');
document.write('   onClick="goToCorkPSC()">');
document.write('UCC Palestine Solidarity Campaign');
document.write('</td>');

if (readerEditorID==1)
   {
document.write('    <td style="color:white;width:80;font-size:12"');
document.write('        onmouseover = \'this.style.backgrouncColor="white";');
document.write('                       this.style.color="red";\'');
document.write('        onmouseout = \'this.style.backgrouncColor="red";');
document.write('                      this.style.color="white";\'');
document.write('        onClick="window.location=\'../ipsc/updateIPSCSyndication.html\'">');
document.write('    Update IPSC Syndication');
document.write('    </td>');
   }
if ( (readerEditorID>0) && (upURL=='..') )
   {
document.write('    <td style="color:white;width:150;font-size:12"');
document.write('        onmouseover = \'this.style.backgrouncColor="white";');
document.write('                       this.style.color="red";\'');
document.write('        onmouseout = \'this.style.backgrouncColor="red";');
document.write('                      this.style.color="white";\'');
document.write('        onClick="window.location=\'../php/newPIWPArtSyndication.php\'">');
document.write('    Update home page');
document.write('    </td>');
document.write('    <td style="color:white;width:150;font-size:12"');
document.write('        onmouseover = \'this.style.backgrouncColor="white";');
document.write('                       this.style.color="red";\'');
document.write('        onmouseout = \'this.style.backgrouncColor="red";');
document.write('                      this.style.color="white";\'');
document.write('       onClick="logout(\''+upURL+'\')">');
document.write('    Logout editor #');
document.write(readerEditorID);
document.write('    </td>');
document.write('    <td style="color:white;width:150;font-size:12"');
document.write('        onmouseover = \'this.style.backgrouncColor="white";');
document.write('                       this.style.color="red";\'');
document.write('        onmouseout = \'this.style.backgrouncColor="red";');
document.write('                      this.style.color="white";\'');
document.write('       onClick="panel(\''+upURL+'\')">');
document.write('    Control Panel');
document.write('    </td>');
document.write('    <td style="color:white;width:150;font-size:12"');
document.write('        onmouseover = \'this.style.backgrouncColor="white";');
document.write('                       this.style.color="red";\'');
document.write('        onmouseout = \'this.style.backgrouncColor="red";');
document.write('                      this.style.color="white";\'');
document.write('       onClick="login(\''+upURL+'\')">');
document.write('    Refresh editor status');
document.write('    </td>');
document.write('    <td style="color:white;width:150;font-size:12"');
document.write('        onmouseover = \'this.style.backgrouncColor="white";');
document.write('                       this.style.color="red";\'');
document.write('        onmouseout = \'this.style.backgrouncColor="red";');
document.write('                      this.style.color="white";\'');
document.write('       onClick="hitCounts(\''+upURL+'\')">');
document.write('    Show hit counts');
document.write('    </td>');
    if ( (readerEditorID==1) && (upURL=='..') )
       {
document.write('        <td style="color:white;width:150;font-size:12"');
document.write('            onmouseover = \'this.style.backgrouncColor="white";');
document.write('                           this.style.color="red";\'');
document.write('            onmouseout = \'this.style.backgrouncColor="red";');
document.write('                          this.style.color="white";\'');
document.write('            onClick="window.location=\'http://www.cs.ucc.ie/j.bowen/CastleparkSharing\'">');
document.write('            Castlepark Sharing');
document.write('        </td>');
document.write('        <td style="color:white;width:150;font-size:12"');
document.write('            onmouseover = \'this.style.backgrouncColor="white";');
document.write('                           this.style.color="red";\'');
document.write('            onmouseout = \'this.style.backgrouncColor="red";');
document.write('                          this.style.color="white";\'');
document.write('            onClick="window.location=\'../php/showHaaretzArticle.php\'">');
document.write('            Show Haaretz article');
document.write('        </td>');
document.write('        <td style="color:white;width:150;font-size:12"');
document.write('            onmouseover = \'this.style.backgrouncColor="white";');
document.write('                           this.style.color="red";\'');
document.write('            onmouseout = \'this.style.backgrouncColor="red";');
document.write('                          this.style.color="white";\'');
document.write('            onClick="window.location=\'../php/custom2Search.php?lv=1s1\'">');
document.write('            Very new search');
document.write('        </td>');
document.write('        <td style="color:white;width:150;font-size:12"');
document.write('            onmouseover = \'this.style.backgrouncColor="white";');
document.write('                           this.style.color="red";\'');
document.write('            onmouseout = \'this.style.backgrouncColor="red";');
document.write('                          this.style.color="white";\'');
document.write('            onClick="window.location=\'../php/times.html\'">');
document.write('             Times Online search');
document.write('        </td>');
document.write('        <td style="color:white;width:150;font-size:12"');
document.write('            onmouseover = \'this.style.backgrouncColor="white";');
document.write('                           this.style.color="red";\'');
document.write('            onmouseout = \'this.style.backgrouncColor="red";');
document.write('                          this.style.color="white";\'');
document.write('            onClick="window.location=\'../editorial/setFeaturedArticle.php\'">');
document.write('             Set featured article');
document.write('        </td>');
document.write('        <td style="color:white;width:150;font-size:12"');
document.write('            onmouseover = \'this.style.backgrouncColor="white";');
document.write('                           this.style.color="red";\'');
document.write('            onmouseout = \'this.style.backgrouncColor="red";');
document.write('                          this.style.color="white";\'');
document.write('            onClick="window.location=\'../php/checkCache.php\'">');
document.write('             Check Haaretz cache');
document.write('        </td>');
document.write('        <td style="color:white;width:150;font-size:12"');
document.write('                          this.style.color="white";\'');
document.write('            onClick="window.location=\'../php/ucc.html\'">');
document.write('             UCC home page');
document.write('        </td>');
document.write('        <td style="color:white;width:150;font-size:12"');
document.write('                          this.style.color="white";\'');
document.write('            onClick="window.location=\'../php/ucc2.html\'">');
document.write('             UCC home page version 2');
document.write('        </td>');
document.write('        <td style="color:white;width:150;font-size:12"');
document.write('            onmouseover = \'this.style.backgrouncColor="white";');
document.write('                           this.style.color="red";\'');
document.write('            onmouseout = \'this.style.backgrouncColor="red";');
document.write('                          this.style.color="white";\'');
document.write('            onClick="window.location=\'../editorial/setFeaturedAdvert.php\'">');
document.write('             Set featured advert');
document.write('        </td>');
document.write('        <td style="color:white;width:150;font-size:12"');
document.write('            onmouseover = \'this.style.backgrouncColor="white";');
document.write('                           this.style.color="red";\'');
document.write('            onmouseout = \'this.style.backgrouncColor="red";');
document.write('                          this.style.color="white";\'');
document.write('            onClick="window.location=\'../editorial/grabArticles.php\'">');
document.write('             Grab articles');
document.write('        </td>');
       }
   }
else if ( (readerEditorID < 0) && (upURL=='..') )
        {
document.write('    <td style="color:white;width:80;font-size:12"');
document.write('        onmouseover = \'this.style.backgrouncColor="white";');
document.write('                       this.style.color="red";\'');
document.write('        onmouseout = \'this.style.backgrouncColor="red";');
document.write('                      this.style.color="white";\'');
document.write('       onClick="logout(\''+upURL+'\')">');
document.write('    <img src="../images/key2.gif"> Logout guest #');
document.write(-1*readerEditorID);
document.write('    </td>');
        }
else if (upURL=='..')
        {
document.write('    <td style="color:white;width:80;font-size:12"');
document.write('        onmouseover = \'this.style.backgrouncColor="white";');
document.write('                       this.style.color="red";\'');
document.write('        onmouseout = \'this.style.backgrouncColor="red";');
document.write('                      this.style.color="white";\'');
document.write('       onClick="login(\''+upURL+'\')">');
document.write('    <img src="../images/key2.gif"> Login');
document.write('    </td>');
        }
document.write('</tr>');
document.write('</table>');
document.write('<input type=hidden name="about" >');
document.write('<input type=hidden name="search" >');
document.write('<input type=hidden name="numberOfRecentDays" >');
document.write('</form>');
document.write('<form name=placesForm method=get action="');
document.write(upURL);
document.write('/php/places.php">'); 
document.write('<input type=hidden name=option>');
document.write('</form>');
document.write('<form name=topicsForm method=get action="');
document.write(upURL);
document.write('/php/topics.php">'); 
document.write('<input type=hidden name=option>');
document.write('</form>');
document.write('<form name=timelineForm method=get action="');
document.write(upURL);
document.write('/php/timeline.php">'); 
document.write('<input type=hidden name=option>');
document.write('</form>');
}

    function mon(number)
      {      if (number==1) 
                { answer = 'Jan'; }
        else if (number==2) 
                { answer = 'Feb'; }
        else if (number==3) 
                { answer = 'Mar'; }
        else if (number==4) 
                { answer = 'Apr'; }
        else if (number==5) 
                { answer = 'May'; }
        else if (number==6) 
                { answer = 'Jun'; }
        else if (number==7) 
                { answer = 'Jul'; }
        else if (number==8) 
                { answer = 'Aug'; }
        else if (number==9) 
                { answer = 'Sep'; }
        else if (number==10) 
                { answer = 'Oct'; }
        else if (number==11) 
                { answer = 'Nov'; }
        else if (number==12) 
                { answer = 'Dec'; }
        return answer; }

function changeToYear(delta)
   {pubDateForm.toYear.value=pubDateForm.toYear.value*1+delta;
   }

function printDateForms(fromMday,fromMon,fromYear,toMday,toMon,toYear)
{
document.write('<form');
document.write(' name=pubDateForm');
document.write(' method=post');
document.write(' action="../php/db.php"');
document.write(' style=\'padding:0;font-size:12;height:30;width:365;');
document.write('        background-color:#dcdcdc;border-style:solid;border-width:1\'>');
document.write('');
document.write('<button type=submit ');
document.write(' style=\'font-size:10;width:180;background-color:#dcdcdc;');
document.write('        border-style:ridge;margin:0.0in;padding:0.0in\'>');
document.write('List articles published on ');
document.write('</button>');
document.write('');
document.write('');
document.write('<select style="font-size:10" name="toDay">');
for (i=1; i<=31; i++)
    {
     document.write('      <option value='+i+' ');
     if (i==toMday) { document.write('selected'); }
     document.write('>'+i+'</option>');
    }
document.write('</select>');
document.write('');
document.write('<select style="font-size:10" name="toMonth">');
for (i=1; i<=12; i++)
    {
     document.write('<option value='+i+' ');
     if (i==toMon) {document.write('selected'); }
     document.write('>'+mon(i)+'</option>');
    }
document.write('</select>');
document.write('');
document.write('&nbsp;');
document.write('<img src="../images/minus.gif" onClick="changeToYear(-1)">');
document.write('<input style="font-size:10;margin:0.0in" type=text size=4 name=toYear ');
document.write('       value='+toYear+'>');
document.write('<img src="../images/plus.gif" onClick="changeToYear(1)">');
document.write('</form>');

document.write('<form');
document.write(' name=pubDatesForm');
document.write(' method=post');
document.write(' action="../php/db.php"');
document.write(' style=\'padding:0;font-size:12;height:30;width:490;');
document.write('        background-color:#dcdcdc;border-style:solid;border-width:1\'>');
document.write('<button type=submit ');
document.write(' style=\'font-size:10;width:180;background-color:#dcdcdc;');
document.write('        border-style:ridge;margin:0.0in;padding:0.0in\'>');
document.write('List articles published between ');
document.write('</button>');
document.write('');
document.write('<select style="font-size:10" name="fromDay">');
for (i=1; i<=31; i++)
       {
        document.write('<option value='+i);
        if (i==fromMday) {document.write(" selected"); }
        document.write('>'+i+'</option>');
       }
document.write('</select>');
document.write('<select style="font-size:10" name="fromMonth">');
for (i=1; i<=12; i++)
    {
     document.write('<option value='+i);
     if (i==fromMon) {document.write(" selected"); }
     document.write('>'+mon(i)+'</option>');
    }
document.write('</select>');
document.write('<input style="font-size:10;margin:0.0in" type=text size=4 name=fromYear ');
document.write(' value='+fromYear+'>');
document.write('&nbsp;');
document.write('&nbsp;');
document.write('and');
document.write('&nbsp;');
document.write('<select style="font-size:10" name="toDay">');
for (i=1; i<=31; i++)
    {
     document.write('<option value='+i);
     if (i==toMday) {document.write(" selected"); }
     document.write('>'+i+'</option>');
    }
document.write('</select>');
document.write('<select style="font-size:10" name="toMonth">');
for (i=1; i<=12; i++)
    { 
     document.write('<option value='+i);
     if (i==toMon) {document.write(" selected"); }
     document.write('>'+mon(i)+'</option>');
    }
document.write('</select>');
document.write('<input style="font-size:10;margin:0.0in" type=text size=4 name=toYear ');
document.write(' value='+toYear+'>');
document.write('');
document.write('');
document.write('</form>');
}



function outputDisclaimer()
  {
    document.write('<br>');
    document.write('<br>');
    document.write('<hr>');
    outputDisclaimerText(); 
  }

function outputDisclaimerText()
  {
    document.write('<small>');
    document.write('<small>');
    document.write('<i>');
    document.write('A <a style="text-decoration:underline" href="http://www.ucc.ie/disclaimer/personal.html">disclaimer</a> applies to this page.');
    document.write('This page is not part of <a href="http://www.ucc.ie">the official UCC website</a>. ');
    document.write('This page is part of a research database of opinions on Palestine and ');
    document.write('related topics which is maintained by members ');
    document.write('of the <a href="http://www.corkpsc.org/ucc">UCC Palestine ');
    document.write('Solidarity Campaign</a>, which comprises a group of students and ');
    document.write('staff in the university. The emphasis in this research project is on ');
    document.write('<span style="color:red">provenance</span> -- we aim to provide as much ');
    document.write('information as possible on the background of the people whose ');
    document.write('opinions are in the database, so that readers can make up ');
    document.write('their own minds on the credibility that they wish to attach to ');
    document.write('these opinions.');
    document.write('</i>');
    document.write('</small>');
    document.write('</small>');
  }

function outputNonUCCFooter()
         {
          document.write('<hr>');
          document.write('<small>');
          document.write('<small>');
          document.write('<div style="font-style:italic">');
          document.write('This page is part of a research database of opinions on Palestine and');
          document.write('related topics which is maintained by members');
          document.write('of the <a href="http://www.corkpsc.org/ucc">UCC Palestine ');
          document.write('Solidarity Campaign</a>, which comprises a group of students and');
          document.write('staff in the university. The emphasis in this research project is on');
          document.write('<span style="color:red">provenance</span> -- we aim to provide as much');
          document.write('information as possible on the background of the people whose');
          document.write('opinions are in the database, so that readers can make up');
          document.write('their own minds on the credibility that they wish to attach to');
          document.write('these opinions.');
          document.write('</div>');
          document.write('</small>');
          document.write('</small>');
         }


function printReferenceBox(url)
{
document.write('<div style="border-color:black;width:380;');
document.write('            border-width:1;border-style:solid;');
document.write('            background-color:#dcdcdc;padding:0.1in;');
document.write('            font-size:12');
document.write('           ">');
document.write('To refer someone else to this page, use this URL:');
document.write('<br>');
document.write('<span style="color:blue;font-size:12">');
document.write('&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;');
document.write(url);
document.write('</span>');
document.write('</div>');
}



