function abrir(num)
{
	switch(num)
	{
		  case(1):
		  ruta="ver_noticias.php";
		  break;
		  case(2):
		  ruta="ver_ofertas.php";
		  break;
	}
    open(ruta,"","left=0,top=0,width=200,height=300,scrollbars=yes");

}

function detalle_noticia(id)
{
	var ruta;
	ruta="detalle_noticia.php?id=";
	ruta=ruta+id;
	open(ruta,"","left=0,top=0,width=200,height=300,scrollbars=yes");
}
function detalle_oferta(id)
{
	var ruta;
	ruta="detalle_oferta.php?id=";
	ruta=ruta+id;
	open(ruta,"","left=0,top=0,width=200,height=300,scrollbars=yes");
}

function confirma(num,id)
{
	var ruta, texto;
	if (num==1){
	ruta="elimina_noticia.php?id=";
	texto="¿Seguro que desea eliminar permanentemente esta noticia?";
	}
	else if (num==2){
	ruta="elimina_oferta.php?id=";
	texto="¿Seguro que desea eliminar permanentemente esta oferta de empleo?";
	}
	else if (num==3){
	ruta="elimina_curso.php?id=";
	texto="¿Seguro que desea eliminar permanentemente este curso?";
	}	
	ruta=ruta+id;
	if (window.confirm(texto))
	{
	window.location.href=ruta;
	}
}

