function checkLanding()
  {
  if (top == self)
    {
    self.navigate('http://www.ccldfw.org')
    }
  }

function noRightClick()
  {
  if (event.button==2) 
    {
    alert('All content copyrighted by the Couple to Couple League.')
    }
  }

document.onmousedown=noRightClick

function newWindow(newpage,param)
  {
  detailwindow=window.open(newpage, 'newwindow',param);
  }