function ir_a (op)
{
	document.forms[0].op.value = op;
	document.forms[0].submit();
}

function leer_noticia(tidNoticia)
{
	document.forms[0].pagina.value = "noticia_completa.php";
	document.forms[0].id.value = tidNoticia;
	document.forms[0].submit();
}

function detalle_producto(tidProducto)
{
	document.forms[0].pagina.value = "producto_detalle.php";
	document.forms[0].id.value = tidProducto;
	document.forms[0].submit();
}

function detalle_descarga(tidDescarga)
{
	document.forms[0].pagina.value = "descarga_detalle.php";
	document.forms[0].id.value = tidDescarga;
	document.forms[0].submit();
}