function insertquicklinks()

{

document.getElementById('quicklinks').innerHTML = "";
document.getElementById('quicklinks').innerHTML = "<a href='http://www.libs.uga.edu/athens'>Athens information</a><a href='http://dataserv.libs.uga.edu/assessment/index.html'>assessment@uga</a><a href='http://www.libs.uga.edu/access_services/borrowing/index.html'>borrowing materials</a><a href='http://www.libs.uga.edu/ref/citation.html'>citation guides</a><a href='http://www.libs.uga.edu/ref/instruction/index.html'>classes/consultations</a><a href='http://www.libs.uga.edu/liaison/endnote/endnote.html'>Endnote</a><a href='http://www.libs.uga.edu/finditfaq.html'>Find It FAQ</a><a href='http://www.libs.uga.edu/researchcentral/working/navigating/floor.html'>floor maps</a><a href='http://www.libs.uga.edu/forms.html'>forms</a><a href='https://gil.uga.edu/cgi-bin/Pwebrecon.cgi?DB=local&PAGE=REQNOBIB'>GALILEO password</a><a href='http://www.libs.uga.edu/researchcentral/subjectguides/genealogy.html'>genealogy research</a><a href='http://www.libs.uga.edu/gawriters/'>Ga. Writers Hall of Fame</a><a href='http://www.libs.uga.edu/access_services/gilexpress.html'>GIL Express</a><a href='http://www.libs.uga.edu/ill/index.html'>Interlibrary Loan</a><a href='http://www.libs.uga.edu/humres/jobs/index.html'>jobs in the library</a><a href='http://www.slc.uga.edu/'>Miller Learning Center</a><a href='http://www.libs.uga.edu/disabil/disabilities.html'>patrons with disabilities</a><a href='http://www.libs.uga.edu/refworks/index.html'>RefWorks</a><a href='http://www.libs.uga.edu/access_services/services/reporequest.html'>repository requests</a><a href='http://www.libs.uga.edu/access_services/reserves.html'>reserves</a><a href='http://www.libs.uga.edu/science/index.html'>Science Library</a><a href='http://www.libs.uga.edu/staff/index.html'>staff resources</a><a href='http://lotus.libs.uga.edu/techsupport/'>tech support</a><a href='http://www.libs.uga.edu/tutorials/'>tutorials</a><a href='http://www.libs.uga.edu/howdoi/go_wireless.html'>wireless access</a><a href='javascript:void(0)'><strong>close quicklinks</strong><img src='http://www-test.libs.uga.edu/shared/graphics/xbox.gif' border='0'></a>";     }

function handlequicklinks(evt){
   var evt = (evt) ? evt : ((window.event) ? window.event : "");
   if (evt){
      var elem = getTargetElement(evt);
      if(elem){
         if(elem.id == "quick"){
            insertquicklinks();
            return true;
         }
         else if(elem.id != "quick"){
            document.getElementById("quicklinks").innerHTML = "";
            return true;
         }
        
      }
   }
}//end handleQuickLinks


function getTargetElement(evt){
   var elem;
   if (evt.target)
      elem = (evt.target.nodeType == 3) ? evt.target.parentNode : evt.target;
   else
      elem = evt.srcElement;
    return elem;
}//end getTargetElement

document.onclick = handlequicklinks;
