function findPageWidth() {   if (window.innerWidth != null) {        return window.innerWidth;   }   if (document.documentElement.clientWidth != null) {        return document.documentElement.clientWidth;   }    if (document.body.clientWidth != null)  {         return document.body.clientWidth;   }   return(null);}function quickie() {  var pageWidth = findPageWidth();  if (pageWidth < 1024) {    document.getElementById('quicklinks').style['display'] = 'none';  }}function clearDefault(el) {if (el.defaultValue==el.value) el.value = ""}