function expandCollapseForumForoForumClick_disc (DOMEvent)
{
	var customGetByID;
	var parentID;
	var child;
	if (document.all)
	{
		document.getElementById = document.all;
		parentID = window.event.srcElement.id;
		child = document.getElementById ("Subthread-" + parentID);
	}
	else
	{
		parentID = DOMEvent.target.id;
		child = document.getElementById ("Subthread-" + parentID);
	}
	if (child != null)
	{
		var parentImage = document.getElementById (parentID);
		if (child.style.display == "none")
		{
			child.style.display = "block";
			parentImage.src = "IMAGES/down.gif";
			parentImage.alt = "Cerrar";
		}
		else
		{
			child.style.display = "none";
			parentImage.src = "IMAGES/up.gif";
			parentImage.alt = "Editar Formulario";
		}
	}
	return true;
}

function Cambiar_action(valor)
  {
if ((document.Formulario.operacion.options[document.Formulario.operacion.selectedIndex].value != "1"))
  {
    document.Formulario.action= "scripts/buscar-resultados-curriculum.asp";
  }
	document.Formulario.submit();
  }

  function previsualizar(campo){
	hor=screen.width
	ver=screen.height 
	hh = 514
	vv = 420
	h=(hor-hh)/2
	v=((ver-vv)/2)-24
	eval("window.open('buscar-resultados2.asp?codigo="+campo+"','_blank','toolbar=no,location=no,menubar=no,scrollbars=yes,directories=no,status=no,resizable=yes,width="+hh+",height="+vv+",left="+h+",top="+v+"')")
}
  
