/*  smartbutton.js  - Provides dynamic links to chat form - AskColorado General Queue
*
*  Steve Gregory, Colorado State Library, 1/21/2010
*/



// IF AGENTS ARE AVAILABLE:
function agents_available() {
  var button = document.getElementById && document.getElementById('smartbutton');
  if (button) button.innerHTML = '<A HREF="" onClick="window.open(\'patronentry_general.html\',\'entrywindow\',\'width=500,height=580,scrollbars=yes, location=no, menubar=no, resizable=yes, toolbar=no\').focus(); return false;"><IMG SRC="../images/smartbutton_askcolorado_on.gif" border=0 alt="AskColorado Librarians are Online... Click Here to Ask a Question"></A>';
  
  var footer = document.getElementById && document.getElementById('smartlink_footer');
  if (footer) footer.innerHTML = '<A HREF="" onClick="window.open(\'patronentry_general.html\',\'entrywindow\',\'width=500,height=580,scrollbars=yes, location=no, menubar=no, resizable=yes, toolbar=no\').focus(); return false;">Ask a Question</A>  /  ';

  var sidek12 = document.getElementById && document.getElementById('smartlink_sidebar_k12');
  if (sidek12) sidek12.innerHTML = '<li><A HREF="" onClick="window.open(\'../k12/patronentry_k12.html\',\'entrywindow\',\'width=500,height=580,scrollbars=yes, location=no, menubar=no, resizable=yes, toolbar=no\').focus(); return false;">Kids and Teens</A></li>';
  
  var sidegeneral = document.getElementById && document.getElementById('smartlink_sidebar_general');
  if (sidegeneral) sidegeneral.innerHTML = '<li><A HREF="" onClick="window.open(\'patronentry_general.html\',\'entrywindow\',\'width=500,height=580,scrollbars=yes, location=no, menubar=no, resizable=yes, toolbar=no\').focus(); return false;">General</A></li>';

  var menu = document.getElementById && document.getElementById('smartlink_menu');
  if (menu) try { menu.innerHTML = '<li><A HREF="" onClick="window.open(\'patronentry_general.html\',\'entrywindow\',\'width=500,height=580,scrollbars=yes, location=no, menubar=no, resizable=yes, toolbar=no\').focus(); return false;">Ask a Question</A></li>'; }
    catch(e) {
      try {
        var ul_menu = document.getElementById('menu');
        var new_li = document.createElement('li');
        new_li.innerHTML = '<A HREF="" onClick="window.open(\'patronentry_general.html\',\'entrywindow\',\'width=500,height=580,scrollbars=yes, location=no, menubar=no, resizable=yes, toolbar=no\').focus(); return false;">Ask a Question</A>';
        ul_menu.appendChild(new_li);
      } catch(e2) {}}
  
  return true;
}
 
// IF AGENTS ARE NOT AVAILABLE:
function agents_not_available() {
  var button = document.getElementById && document.getElementById('smartbutton');
  if (button) button.innerHTML = '<A HREF="" onClick="window.open(\'../mailer/genmail.php\',\'mailwindow\',\'width=530,height=580,scrollbars=yes, location=no, menubar=no, resizable=yes, toolbar=no\').focus(); return false;"><IMG SRC="../images/smartbutton_askcolorado_off.gif" border=0 alt="No AskColorado Librarians are Available... Click Here to Leave a Message"></A>';
  
  var footer = document.getElementById && document.getElementById('smartlink_footer');
  if (footer) footer.innerHTML = '<A HREF="" onClick="window.open(\'../mailer/genmail.php\',\'mailwindow\',\'width=530,height=580,scrollbars=yes, location=no, menubar=no, resizable=yes, toolbar=no\').focus(); return false;">Ask a Question</A>  /  ';

  var sidek12 = document.getElementById && document.getElementById('smartlink_sidebar_k12');
  if (sidek12) sidek12.innerHTML = '<li><A HREF="" onClick="window.open(\'../mailer/k12mail.php\',\'mailwindow\',\'width=530,height=580,scrollbars=yes, location=no, menubar=no, resizable=yes, toolbar=no\').focus(); return false;">Kids and Teens</a></li>';
  
  var sidegeneral = document.getElementById && document.getElementById('smartlink_sidebar_general');
  if (sidegeneral) sidegeneral.innerHTML = '<li><A HREF="" onClick="window.open(\'../mailer/genmail.php\',\'mailwindow\',\'width=530,height=580,scrollbars=yes, location=no, menubar=no, resizable=yes, toolbar=no\').focus(); return false;">General</a></li>';

  var menu = document.getElementById && document.getElementById('smartlink_menu');
  if (menu) try { menu.innerHTML = '<li><A HREF="" onClick="window.open(\'../mailer/genmail.php\',\'mailwindow\',\'width=530,height=580,scrollbars=yes, location=no, menubar=no, resizable=yes, toolbar=no\').focus(); return false;">Ask a Question</a></li>'; } catch (e) {}
  
  return true;
}






