/* Left Navigation */
function sideNavClick(el) {
 location.href = el.firstChild.href;
}
function sideNavMI(el) {
 el.style.backgroundColor  = '#F8F8F0';
 el.firstChild.style.color = '#000000';
}
function sideNavMO(el) {
 el.style.backgroundColor  = '#FFFFFF';
 el.firstChild.style.color = '#336699';
}




function popup(url,width,height,winname) {
  var url, width, height;
  if (width == null)  { width  = 200; }   // default width
  if (height == null) { height = 400; }   // default height
  window.open(url,winname,'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width='+width+',height='+height);
  }

// exit frames
if (window.location != window.top.location) {
  window.top.location = window.location;
  }


