<!--
var newWindow = null
function VentanaPopup(Nombre,FichHtml,texto,idioma,tipo,Ancho,Alto)
{
	if (self.innerWidth)	// netscape
	{	Ancho = self.innerWidth;
		Alto = self.innerHeight;
	}
	else if (document.documentElement && document.documentElement.clientWidth)	//IE 6
	{	Ancho = document.documentElement.clientWidth;
		Alto = document.documentElement.clientHeight;
	}
	else if (document.body)		//IE...
	{	Ancho = document.body.clientWidth;
		Alto = document.body.clientHeight;
	}

	if (Ancho==null || Ancho==0)	Ancho=630;
	if (Alto==null || Alto==0)		Alto=450;
	//alert(Nombre+'-'+Ancho+'-'+Alto)
	//if(tipo==0)
		newWindow = window.open(FichHtml,Nombre,"width="+ Ancho +",height="+ Alto +",toolbar,status,scrollbars,resizable");
	//else
}
//-->
