/*
----------------------------------------------------------------
----------------------------------------------------------------
  JAVASCRIPT
  Function: Change display of selected page link in _sub menu
  Notes:
----------------------------------------------------------------
----------------------------------------------------------------
*/
<!--
function doThis(el)  {
  if (el.href==window.location) {
    el.style.textDecoration = "none"
    el.style.fontFamily = "arial,sans-serif"
    el.style.fontWeight = "800"
    el.style.color = "#cccccc"
    el.style.backgroundColor = "#e9eef6"
    el.style.cursor = "default"
    el.style.width = "153px"
    el.style.border = "0px"
    el.style.borderStyle = "solid"
    el.style.borderColor = "#e9eef6"
    el.style.paddingLeft = "0.0em"
    return "400"
  }
}
//-->
/*
----------------------------------------------------------------
----------------------------------------------------------------
  JAVASCRIPT
  Function: This will popup window for testing acrobat reader
  Notes:
----------------------------------------------------------------
----------------------------------------------------------------
*/
<!--
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=0,width=320,height=430,left=100,top=100');");
}
//-->
