//Abrir ventanas con ajax
function abrirventana(pag,titlen,ancho)
{
//new Window({url: pag, className: "alphacube", top:160, left:250, width:600, height:600,showCentered :true,showEffectOptions: {duration:1.5} }).show()
//WindowCloseKey.init();

titlen="";
if (ancho){ancho=ancho;} else {ancho="575";}
//alto = document.getElementById('contenido-curso').offsetHeight;
win = new Window('window_id', {className: "alphacube",title: titlen, draggable:false,resizable:false,width:ancho,height:"500",top:200})
win.setURL(pag);
win.showCenter("top");
//win.minimize(1);
//win.updateHeight();
win.setDestroyOnClose();
                               
 }         

//abrir y cerrar capas 
 function mostrar(p)
{

	document.getElementById(p).style.display='block';
	//document.getElementById(p).style.zIndex='5501';
	//document.getElementById(p).style.position='absolute';
	/*document.getElementById(p).style.position='fixed';
	document.getElementById(p).style.top='50%';
	document.getElementById(p).style.left='50%';
	document.getElementById(p).style.width="30em";   
	document.getElementById(p).style.height="25em";   
	document.getElementById(p).style.marginTop=" -9em" 
	document.getElementById(p).style.marginLeft="-15em";
	document.getElementById(p).style.border="1px solid #ccc";   
	document.getElementById(p).style.background="white"; 
	document.getElementById(p).style.padding="50"; */
	  
	document.getElementById(p).focus();
	
//document.getElementById('capagris').style.display='block';
//document.getElementById('capagris').style.zIndex='100';


	
	
	
	}

function ocultar(p)
{
	document.getElementById(p).style.display='none';	
	//document.getElementById('capagris').style.display='none';	
	}

 //Buscador cursos
 function validarbuscacurso(formu)
{
if (document.getElementById('palabrabuscar').value == "")

	{
  		alert ('Por favor indique el nombre de un curso.');
		document.getElementById('palabrabuscar').focus();
		return false;

	}
		

//Fin abrir capas y cerrar
	
if (document.getElementById('palabrabuscar').value == "Busca tu curso")
			{
	  		alert ('Por favor indique el nombre de un curso.');
			document.getElementById('palabrabuscar').select();
			document.getElementById('palabrabuscar').focus();
			return false;
			}
			

submit();
				
		



}