function openVentana(_url, nombre, configuracion, version, tipo)
{
	remote = window.open(_url, nombre, configuracion);
	if (remote != null) 
	{ 
		if (remote.opener == null) { remote.opener = self; }
	}
	if (version == 1 || tipo != "IE") remote.focus();
}

function openVentana(_url, nombre, configuracion)
{
	remote = window.open(_url, nombre, configuracion);
	if (remote != null) 
	{ 
		if (remote.opener == null) { remote.opener = self; }
	}
	remote.focus();
}
