//===========================================================================================================================
// NOTE: overLIB variables can be changed when invoking overlink() and overlinkhref() when creating overlib links.
//
// also you can put changes in the ECMA section below:
// height was 600 changed it to 400
// 04/11/09 -- ol_delay for linux notes is 250
//===========================================================================================================================
//THIS IS FROM sitewrap.notes_ol_vars()
//var ol_delay="250";

//var ol_delay="0";                 // DEPRECATED BY DHS 
//var ol_cellpad="10";              // DEPRECATED BY DHS
//var ol_closeclick="1";            // DEPRECATED BY DHS
//var ol_width="300";               // DEPRECATED BY DHS Not necessary (I think)
//var ol_textsize="85%";            // I DONT LIKE THIS 

var ol_bgcolor="#aaaaaa";         // color of the border of the popup box
var ol_fgcolor="lightyellow";
var ol_sticky="1";
var ol_wrap="1";                    // Shrink wrap around content
var ol_mouseoff="500";              // close 500ms after mousing on and off (this is a toggle so beware)

function setvarrad(varform,val)
{ var l0 = document.getElementById('change-'+varform);
  var l1 = l0.firstChild;
  var l2 = l1.firstChild;
  var l3 = l2.firstChild;
  l3.nodeValue = val;
  return(document.getElementById('qtlinput'));
}
function cradq(v,qa)
{ var i = setvarrad('q',v);
  qtl = qa + i.value[1] + i.value[2];
  i.value = qtl;
}
function cradt(v,qa)
{ var i = setvarrad('t',v);
  qtl = i.value[0] + qa + i.value[2];
  i.value = qtl; 
}
function cradl(v,qa)
{ var i = setvarrad('l',v);
  qtl = i.value[0] + i.value[1] + qa; 
  i.value = qtl; 
}

function cur_on(e)  { e.className += ' current'; }

function cur_off(e) { e.className = e.className.replace(/\b ?current\b/, ''); }


