//--------------------------------------------------------------------
// aulanet.js
//--------------------------------------------------------------------
// Joan Homar
// jhomar@pie.xtec.es
// 2002-06-14
//--------------------------------------------------------------------


//--------------------------------------------------------------------
// funcions
//--------------------------------------------------------------------

function getCookie(Name) {
  var search = Name + "="
  if (document.cookie.length > 0) { // if there are any cookies
    offset = document.cookie.indexOf(search)
    if (offset != -1) { // if cookie exists
      offset += search.length
      // set index of beginning of value
      end = document.cookie.indexOf(";", offset)
      // set index of end of cookie value
      if (end == -1)
      end = document.cookie.length
      return unescape(document.cookie.substring(offset, end))
    }
  }
}

//--------------------------------------------------------------------
// final funcions
//--------------------------------------------------------------------

//var url_actual = window.location;
//var co = getCookie("usuari-edu365");

//if ( co == null)
//{
//  window.location = "http://www.edu365.com/pls/edu365/edu_sec_plsql_2.login?p_username=&p_password=&p_url=" + url_actual;
//}


