function LanzaVentana(nombreVentana,url,ancho,alto,devolverReferencia) 
{
	args="screenX=0,top=0,screenY=0,left=0,width="+ancho+",height="+alto+",scrollbars=yes,resizable=yes,status=0,copyhistory=no";
  	remote=window.open(url,nombreVentana,args);

	if (remote != null) 
	{
		if (remote.opener == null)
		{
			remote.opener = self;
		}
	}
	
	if (devolverReferencia) 
	{ 
		return remote; 
	}
}

