

function pageLoad()
{
   // alert("carga pagina");
    myLightbox = new Lightbox();
}

function AmpliarNoticia(idNoticia) 
{
	var hiddenField = $get("oculto");
	if (hiddenField) 
	{
		hiddenField.value = (new Date()).getTime()+'|'+idNoticia;
		__doPostBack('oculto' , '');		
	}
}

function NuevaConsulta() 
{
	var hiddenField = $get("hfConsulta");
	if (hiddenField) 
	{
		hiddenField.value = (new Date()).getTime();
		__doPostBack('hfConsulta' , '');
	}
}

function DescargarDocumento(tipo, id)
{
  var frame = document.getElementById ("marco");
  frame.src = "./descargaDoc.aspx?tipo="+tipo+"&docId="+id;  
}

function CargarGaleria ()
{
    //alert ("Click");
}

Sys.Application.notifyScriptLoaded();
