function muestraVentana (url, nombre, parametros)
{
	var ventana = eval ("window.ventana" + nombre);
	if (ventana == undefined || ventana.closed)
	{
		eval ("ventana = window.ventana" + nombre + " = window.open ('" + url + "', '" + nombre + "', '" + parametros + "')");
	}
	else
		ventana.document.location = url;
	ventana.focus ();
	//('verfichapub.php','Imagen','scrollbars=yes,width=650,height=450')
}

function cargaOpener (url)
{
	var ventana = window.opener;
	if (ventana == undefined || ventana.closed)
		ventana.open (url);
	else
		ventana.document.location = url;
	ventana.focus ();
}
