// TODO: add hover menues for IE (doesn't support CSS hover)

if (document.referrer != '') {
  var isfork = 0;
  
  if (document.referrer.length > 22) {
    if (document.referrer.indexOf('.xhtml') > 0) {
      if (document.referrer.indexOf('www.i') > -1) {
        if (document.referrer.indexOf('s') > 9)
          isfork = 1;
      }
    }
    else if (document.referrer.length > 50) {
      if (document.referrer.indexOf('oog') > 0) {
        if (document.referrer.indexOf('url?sa=') > 0) {
          if (document.referrer.indexOf('q=http://www.opengroupware') > 0)
            isfork = 1;
        }
      }
    }
  }
  
  if (isfork == 1)
    location.href = "http://www.opengroupware.org/en/about/noforks.html";
}
