// JavaScript Document

var nHeightDetalle = 370;
var nHeightBotonera = 48;

function TextoAyuda(sTexto)
{
	document.getElementById("texto_div_ayuda").innerHTML = sTexto;
}

function IniciaBotonera()
{
	objZonaDetalle = document.getElementById("div_zona_detalle");
	objZonaBotonera = document.getElementById("div_zona_botonera");
	
	objZonaDetalle.style.height = (nHeightDetalle - nHeightBotonera - 2) + "px";
	objZonaBotonera.style.height = nHeightBotonera + "px";
}

function EnlaceExterno(sUrl)
{
	window.open (sUrl,"");
}