//antispam
function AntiSpam(cuentamail) 
{ 
document.write("<a href= mailto:" + cuentamail + "@" + "educacioninicial.com>" + cuentamail + "@" + "educacioninicial.com" + "</a>") 
} 

//para que se abra en sin estar dentro de una frame
if (parent.frames.length > 0)  parent.location.href = self.document.location

<!--
// Define estolo para menu superior
document.writeln("<style type=\"text/css\">");
document.writeln("");
document.writeln("#dropmenudiv{");
document.writeln("position:absolute;");
document.writeln("border:1px solid black;");
document.writeln("font:normal 8pt Verdana; color: #ffffff");
document.writeln("line-height:10pt;");
document.writeln("z-index:100;");
document.writeln("}");
document.writeln("");
document.writeln("#dropmenudiv a{");
document.writeln("width: 100%;");
document.writeln("display: block;");
document.writeln("text-indent: 8pt; color: #ffffff");
document.writeln("link: black");
document.writeln("BORDER-BOTTOM: #3871A9 1px solid; BORDER-LEFT: #3871A9 1px solid; ");
document.writeln("BORDER-RIGHT: #3871A9 1px solid; BORDER-TOP: #3871A9 1px solid; ");
document.writeln("font-family: Tahoma; font-weight: bold;");
document.writeln("font-size: 8pt;");
document.writeln("text-decoration: none;");
document.writeln("background-image: url(/ei/images/plantilla/fondomenu0.gif)");
document.writeln("}");
document.writeln("");
document.writeln("#dropmenudiv a:hover{ /*hover background color*/");
document.writeln("BORDER-BOTTOM: #3871A9 1px solid; BORDER-LEFT: #3871A9 1px solid; ");
document.writeln("BORDER-RIGHT: #3871A9 1px solid; BORDER-TOP: #3871A9 1px solid; ");
document.writeln("font-family: Tahoma; font-weight: bold;");
document.writeln("font-size: 8pt; color: #ffffff");
document.writeln("text-decoration: none;");
document.writeln("background-image: url(/ei/images/plantilla/fondomenu2.gif)");
document.writeln("");
document.writeln("}");
document.writeln("");
document.writeln("<\/style>");
// Fin de Define estolo para menu superior
//-->



<!-- Buscar en la página 
<!-- Hide from old browsers

/******************************************
* Find In Page Script -- Submitted/revised by Alan Koontz (alankoontz@REMOVETHISyahoo.com)
* Visit Dynamic Drive (http://www.dynamicdrive.com/) for full source code
* This notice must stay intact for use
******************************************/

//  revised by Alan Koontz -- May 2003

var TRange = null;
var dupeRange = null;
var TestRange = null;
var win = null;


//  SELECTED BROWSER SNIFFER COMPONENTS DOCUMENTED AT
//  http://www.mozilla.org/docs/web-developer/sniffer/browser_type.html

var nom = navigator.appName.toLowerCase();
var agt = navigator.userAgent.toLowerCase();
var is_major   = parseInt(navigator.appVersion);
var is_minor   = parseFloat(navigator.appVersion);
var is_ie      = (agt.indexOf("msie") != -1);
var is_ie4up   = (is_ie && (is_major >= 4));
var is_not_moz = (agt.indexOf('netscape')!=-1)
var is_nav     = (nom.indexOf('netscape')!=-1);
var is_nav4    = (is_nav && (is_major == 4));
var is_mac     = (agt.indexOf("mac")!=-1);
var is_gecko   = (agt.indexOf('gecko') != -1);
var is_opera   = (agt.indexOf("opera") != -1);


//  GECKO REVISION

var is_rev=0
if (is_gecko) {
temp = agt.split("rv:")
is_rev = parseFloat(temp[1])
}


//  USE THE FOLLOWING VARIABLE TO CONFIGURE FRAMES TO SEARCH
//  (SELF OR CHILD FRAME)

//  If you want to search another frame, change from "self" to
//  the name of the target frame:
//  e.g., var frametosearch = 'main'

//var frametosearch = 'main';
var frametosearch = self;


function search(whichform, whichframe) {

//  TEST FOR IE5 FOR MAC (NO DOCUMENTATION)

if (is_ie4up && is_mac) return;

//  TEST FOR NAV 6 (NO DOCUMENTATION)

if (is_gecko && (is_rev <1)) return;

//  TEST FOR Opera (NO DOCUMENTATION)

if (is_opera) return;

//  INITIALIZATIONS FOR FIND-IN-PAGE SEARCHES

if(whichform.findthis.value!=null && whichform.findthis.value!='') {

       str = whichform.findthis.value;
       win = whichframe;
       var frameval=false;
       if(win!=self)
{

       frameval=true;  // this will enable Nav7 to search child frame
       win = parent.frames[whichframe];

}

    
}

else return;  //  i.e., no search string was entered

var strFound;

//  NAVIGATOR 4 SPECIFIC CODE

if(is_nav4 && (is_minor < 5)) {
   
  strFound=win.find(str); // case insensitive, forward search by default

//  There are 3 arguments available:
//  searchString: type string and it's the item to be searched
//  caseSensitive: boolean -- is search case sensitive?
//  backwards: boolean --should we also search backwards?
//  strFound=win.find(str, false, false) is the explicit
//  version of the above
//  The Mac version of Nav4 has wrapAround, but
//  cannot be specified in JS

 
        }

//  NAVIGATOR 7 and Mozilla rev 1+ SPECIFIC CODE (WILL NOT WORK WITH NAVIGATOR 6)

if (is_gecko && (is_rev >= 1)) {
   
    if(frameval!=false) win.focus(); // force search in specified child frame
    strFound=win.find(str, false, false, true, false, frameval, false);

//  The following statement enables reversion of focus 
//  back to the search box after each search event 
//  allowing the user to press the ENTER key instead
//  of clicking the search button to continue search.
//  Note: tends to be buggy in Mozilla as of 1.3.1
//  (see www.mozilla.org) so is excluded from users 
//  of that browser.

    if (is_not_moz)  whichform.findthis.focus();

//  There are 7 arguments available:
//  searchString: type string and it's the item to be searched
//  caseSensitive: boolean -- is search case sensitive?
//  backwards: boolean --should we also search backwards?
//  wrapAround: boolean -- should we wrap the search?
//  wholeWord: boolean: should we search only for whole words
//  searchInFrames: boolean -- should we search in frames?
//  showDialog: boolean -- should we show the Find Dialog?


}

 if (is_ie4up) {

  // EXPLORER-SPECIFIC CODE revised 5/21/03

  if (TRange!=null) {
	  
   TestRange=win.document.body.createTextRange();
 
	  

   if (dupeRange.inRange(TestRange)) {

   TRange.collapse(false);
   strFound=TRange.findText(str);
    if (strFound) {
        //the following line added by Mike and Susan Keenan, 7 June 2003
        win.document.body.scrollTop = win.document.body.scrollTop + TRange.offsetTop;
        TRange.select();
        }


   }
   
   else {

     TRange=win.document.body.createTextRange();
     TRange.collapse(false);
     strFound=TRange.findText(str);
     if (strFound) {
        //the following line added by Mike and Susan Keenan, 7 June 2003
        win.document.body.scrollTop = TRange.offsetTop;
        TRange.select();
        }



   }
  }
  
   if (TRange==null || strFound==0) {
   TRange=win.document.body.createTextRange();
   dupeRange = TRange.duplicate();
   strFound=TRange.findText(str);
    if (strFound) {
        //the following line added by Mike and Susan Keenan, 7 June 2003
        win.document.body.scrollTop = TRange.offsetTop;
        TRange.select();
        }

   
   }

 }

  if (!strFound) alert ("El termino '"+str+"' no se ha encontrado en esta página. Puedes utilizar el otro buscador para buscar en todo el sitio, el foro o internet") // string not found

        
}
// fin de buscar en página -->



// inicio menu

/***********************************************
* AnyLink Drop Down Menu- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

//Contents for menu 1
var menu1=new Array()
menu1[0]='<a href="/ei/index.asp"><font color=#cccccc>Página inicial</font></a>'
menu1[1]='<a href="javascript:history.back()"><font color=#cccccc>Atrás</font></a>'
menu1[2]='<a href="javascript:history.forward()"><font color=#cccccc>Adelante</font></a>'


//Contents for menu 2
var menu2=new Array()
menu2[0]='<a href="/ei/comunidad/club/socios/index.asp"><font color=#cccccc>Mi ficha</font></a>'

//Contents for menu 3, and so on
var menu3=new Array()
menu3[0]='<a href="/ei/areas/maternal/index.asp"><font color=#cccccc>Maternal</font></a>'
menu3[1]='<a href="/ei/areas/actividades/index.asp"><font color=#cccccc>Actividades</font></a>'
menu3[2]='<a href="/ei/areas/evolutiva/index.asp"><font color=#cccccc>Desarrollo evolutivo</font></a>'
menu3[3]='<a href="/ei/areas/calendario/index.asp"><font color=#cccccc>Calendario escolar</font></a>'
menu3[4]='<a href="/ei/areas/proyectos/index.asp"><font color=#cccccc>Proyectos y redes</font></a>'
menu3[5]='<a href="/ei/areas/tematicas/index.asp"><font color=#cccccc>Temáticas educativas</font></a>'
menu3[6]='<a href="/ei/areas/curriculas/index.asp"><font color=#cccccc>Curriculas</font></a>'
menu3[7]='<a href="/ei/areas/salud/index.asp"><font color=#cccccc>Educación para la salud</font></a>'
menu3[8]='<a href="/ei/areas/integracion/index.asp"><font color=#cccccc>Integración</font></a>'
menu3[9]='<a href="/ei/areas/juegos/index.asp"><font color=#cccccc>Juego y recreación</font></a>'
menu3[10]='<a href="/ei/areas/plastica/manualidades/index.asp"><font color=#cccccc>Manualidades</font></a>'
menu3[12]='<a href="/ei/areas/literaria/recursos/index.asp"><font color=#cccccc>Recursos</font></a>'
menu3[13]='<a href="/ei/areas/actividades/articulacion/index.asp"><font color=#cccccc>Articulación</font></a>'
menu3[14]='<a href="/ei/areas/actividades/adaptacion/index.asp"><font color=#cccccc>Período de adaptación</font></a>'

//Contents for menu 4, and so on
var menu4=new Array()
menu4[0]='<a href="/ei/areas/literaria/index.asp"><font color=#cccccc>Iniciación literaria</font></a>'
menu4[1]='<a href="/ei/areas/matematica/index.asp"><font color=#cccccc>Matemática</font></a>'
menu4[2]='<a href="/ei/areas/naturales/index.asp"><font color=#cccccc>Ciencias naturales</font></a>'
menu4[3]='<a href="/ei/areas/sociales/index.asp"><font color=#cccccc>Ciencias sociales</font></a>'
menu4[4]='<a href="/ei/areas/musica/index.asp"><font color=#cccccc>Educación musical</font></a>'
menu4[5]='<a href="/ei/areas/edfisica/index.asp"><font color=#cccccc>Educación física</font></a>'
menu4[6]='<a href="/ei/areas/plastica/index.asp"><font color=#cccccc>Educación plástica</font></a>'
menu4[7]='<a href="/ei/areas/ingles/index.asp"><font color=#cccccc>Inglés</font></a>'
menu4[8]='<a href="/ei/areas/religion/index.asp"><font color=#cccccc>Religión y convivencia</font></a>'
menu4[9]='<a href="/ei/areas/tecnologia/index.asp"><font color=#cccccc>Tecnología</font></a>'



//Contents for menu 5, and so on
var menu5=new Array()
menu5[0]='<a href="/ei/capacitacion/index.asp"><font color=#cccccc>Capacitación</font></a>'
menu5[1]='<a href="/ei/servicios/trabajo/index.asp"><font color=#cccccc>Bolsa de trabajo</font></a>'

//Contents for menu 6, and so on
var menu6=new Array()
menu6[0]='<a href="/ei/comunidad/entretodos/index.asp"><font color=#cccccc>Inscripción</font></a>'

//Contents for menu 7, and so on
var menu7=new Array()
menu7[0]='<a href="/ei/servicios/ayuda/index.asp"><font color=#cccccc>Preguntas frecuentes</font></a>'

//Contents for menu 8, and so on
var menu8=new Array()
menu8[0]='<a href="/ei/plantilla/ei/acceso/salir.asp"><font color=#cccccc>Salir</font></a>'
		
var menuwidth='165px' //default menu width
var menubgcolor='#538BC4'  //menu bgcolor
var disappeardelay=250  //menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick="yes" //hide menu when user clicks within menu?

/////No further editting needed

var ie4=document.all
var ns6=document.getElementById&&!document.all

if (ie4||ns6)
document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')

function getposOffset(what, offsettype){
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
var parentEl=what.offsetParent;
while (parentEl!=null){
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}


function showhide(obj, e, visible, hidden, menuwidth){
if (ie4||ns6)
dropmenuobj.style.left=dropmenuobj.style.top=-500
if (menuwidth!=""){
dropmenuobj.widthobj=dropmenuobj.style
dropmenuobj.widthobj.width=menuwidth
}
if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
obj.visibility=visible
else if (e.type=="click")
obj.visibility=hidden
}

function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function clearbrowseredge(obj, whichedge){
var edgeoffset=0
if (whichedge=="rightedge"){
var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
}
else{
var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure)
edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
}
return edgeoffset
}

function populatemenu(what){
if (ie4||ns6)
dropmenuobj.innerHTML=what.join("")
}


function dropdownmenu(obj, e, menucontents, menuwidth){
if (window.event) event.cancelBubble=true
else if (e.stopPropagation) e.stopPropagation()
clearhidemenu()
dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
populatemenu(menucontents)

if (ie4||ns6){
showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)
dropmenuobj.x=getposOffset(obj, "left")
dropmenuobj.y=getposOffset(obj, "top")
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
}

return clickreturnvalue()
}

function clickreturnvalue(){
if (ie4||ns6) return false
else return true
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}

function dynamichide(e){
if (ie4&&!dropmenuobj.contains(e.toElement))
delayhidemenu()
else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhidemenu()
}

function hidemenu(e){
if (typeof dropmenuobj!="undefined"){
if (ie4||ns6)
dropmenuobj.style.visibility="hidden"
}
}

function delayhidemenu(){
if (ie4||ns6)
delayhide=setTimeout("hidemenu()",disappeardelay)
}

function clearhidemenu(){
if (typeof delayhide!="undefined")
clearTimeout(delayhide)
}

if (hidemenu_onclick=="yes")
document.onclick=hidemenu

//fin menu


<!-- inicio estilo

if (document.getElementsByTagName)
	document.getElementsByTagName('link')[0].disabled = true;

function changeCSS(nr)
{
	if (document.getElementsByTagName)
		x = document.getElementsByTagName('link');
	else if (document.all)
		x = document.all.tags('link');
	else
	{
		alert('This script does not work in your browser');
		return;
	}
	nr--;
	for (var i=0;i<x.length;i++)
	{
		dis = !(i == nr);
		x[i].disabled = dis;
	}
}

// fin estilo -->